带你读《现代Javascript高级教程》三十一、requestAnimationFrame:优化动画和渲染的利器(2)

简介: 带你读《现代Javascript高级教程》三十一、requestAnimationFrame:优化动画和渲染的利器(2)

带你读《现代Javascript高级教程》三十一、requestAnimationFrame:优化动画和渲染的利器(1)https://developer.aliyun.com/article/1349490?groupCode=tech_library


4. 使用requestAnimationFrame的示例

下面通过几个示例来演示如何使用requestAnimationFrame来实现动画和渲染效果。

1 实现平滑的滚动效果

下面的示例代码演示了如何使用requestAnimationFrame实现平滑的滚动效果:

 

function smoothScrollTo(targetY, duration) {
  const startY = window.pageYOffset;
  const distance = targetY - startY;
  const startTime = performance.now();
  function step(currentTime) {
    const elapsedTime = currentTime - startTime;
    const progress = Math.min(elapsedTime / duration, 1);
    const ease = easingFunction(progress);
    window.scrollTo(0, startY + distance * ease);
    if (elapsedTime < duration) {
      requestAnimationFrame(step);
    }
  }
  requestAnimationFrame(step);}
function easingFunction(t) {
  return t * t * t;}
// 使用示例const button = document.querySelector('scrollButton');
button.addEventListener('click', () => {
  smoothScrollTo(1000, 1000);});

 

在上述代码中,我们定义了一个smoothScrollTo函数,用于实现平滑的滚动效果。该函数接收目标位置targetY和滚动的持续时间duration作为参数。在函数内部,我们获取当前的滚动位置startY和目标位置与起始位置之间的距离distance

 

然后,我们使用performance.now()获取当前的时间戳startTime,并定义一个step函数用于更新滚动位置。在step函数中,我们根据时间的流逝计算出进度progress,并使用缓动函数easingFunction来调整进度。最后,我们使用requestAnimationFrame调度step函数的执行,并在滚动动画完成之前不断更新滚动位置。

2 实现粒子动画效果

下面的示例代码演示了如何使用requestAnimationFrame实现粒子动画效果:

 

const canvas = document.querySelector('canvas');const ctx = canvas.getContext('2d');
const particles = [];
function Particle(x, y, speedX, speedY, radius, color) {
  this.x = x;
  this.y = y;
  this.speedX = speedX;
  this.speedY = speedY;
  this.radius = radius;
  this.color = color;}
Particle.prototype.update = function() {
  this.x += this.speedX;
  this.y += this.speedY;
  if (this.x + this.radius < 0 || this.x - this.radius > canvas.width) {
    this.speedX = -this.speedX;
  }
  if (this.y + this.radius < 0 || this.y - this.radius > canvas.height) {
    this.speedY = -this.speedY;
  }};
Particle.prototype.draw = function() {
  ctx.beginPath();
  ctx.arc(this.x, this.y, this.radius, 0, Math.PI * 2, false);
  ctx.fillStyle = this.color;
  ctx.fill();
  ctx.closePath();};
function createParticles() {
  for (let i = 0; i < 100; i++) {
    const x = Math.random() * canvas.width;
    const y = Math.random() * canvas.height;
    const speedX = Math.random() * 4 - 2;
    const speedY = Math.random() * 4 - 2;
    const radius = Math.random() * 5 + 1;
    const color = getRandomColor();
    particles.push(new Particle(x, y, speedX, speedY, radius, color));
  }}
function updateParticles() {
  particles.forEach((particle) => {
    particle.update();
  });}
function drawParticles() {
  ctx.clearRect(0, 0, canvas.width, canvas.height);
  particles.forEach((particle) => {
    particle.draw();
  });
  requestAnimationFrame(drawParticles);}
// 使用示例createParticles();drawParticles();
function getRandomColor() {
  const letters = '0123456789ABCDEF';
  let color = '';
  for (let i = 0; i < 6; i++) {
    color += letters[Math.floor(Math.random() * 16)];
  }
  return color;}

 

带你读《现代Javascript高级教程》三十一、requestAnimationFrame:优化动画和渲染的利器(3)https://developer.aliyun.com/article/1349488?groupCode=tech_library

相关文章
|
28天前
|
存储 缓存 JavaScript
如何优化Node.js应用的内存使用以提高性能?
通过以上多种方法的综合运用,可以有效地优化 Node.js 应用的内存使用,提高性能,提升用户体验。同时,不断关注内存管理的最新技术和最佳实践,持续改进应用的性能表现。
116 62
|
1月前
|
JavaScript 前端开发
如何使用时间切片来优化JavaScript动画的性能?
如何使用时间切片来优化JavaScript动画的性能?
|
24天前
|
存储 缓存 监控
如何使用内存监控工具来优化 Node.js 应用的性能
需要注意的是,不同的内存监控工具可能具有不同的功能和特点,在使用时需要根据具体工具的要求和操作指南进行正确使用和分析。
66 31
|
1月前
|
Web App开发 JavaScript 前端开发
2024年5月node.js安装(winmac系统)保姆级教程
本篇博客为2024年5月版Node.js安装教程,适用于Windows和Mac系统。作者是一名熟悉JavaScript与Vue的大一学生,分享了Node.js的基本介绍、下载链接及简单安装步骤。安装完成后,通过终端命令`node -v`验证版本即可确认安装成功。欢迎关注作者,获取更多技术文章。
29 2
2024年5月node.js安装(winmac系统)保姆级教程
|
1月前
|
JavaScript 前端开发
如何在不影响性能的前提下使用JavaScript库来实现复杂的动画效果?
如何在不影响性能的前提下使用JavaScript库来实现复杂的动画效果?
|
1月前
|
JavaScript 前端开发
CSS3 动画和 JavaScript 动画的性能比较
具体的性能表现还会受到许多因素的影响,如动画的复杂程度、浏览器的性能、设备的硬件条件等。在实际应用中,需要根据具体情况选择合适的动画技术。
|
1月前
|
缓存 前端开发 JavaScript
JavaScript加载优化
JavaScript加载优化
|
1月前
ractive.js联系表单动画效果源码
一款ractive.js联系表单动画效果,很有创意的发送邮件、联系内容等表单,基于ractive.js实现的动画效果,以发送信件的方式。
24 1
|
1月前
|
缓存 前端开发 JavaScript
优化CSS和JavaScript加载
优化CSS和JavaScript加载
|
1月前
|
缓存 JavaScript 前端开发
介绍一下 JavaScript 中数组方法的常见优化技巧
通过合理运用这些优化技巧,可以提高 JavaScript 中数组方法的执行效率,提升代码的整体性能。在实际开发中,需要根据具体的业务场景和数据特点选择合适的优化方法。
29 6