Apple官网的动效

在这里插入图片描述

这里用的requestAnimationFrame做的效果,因为他会根据你屏幕的刷新率去显示,效果比setTimeout、setInterval好


requestAnimationFrame 比起 setTimeout、setInterval的优势主要有两点:
1、requestAnimationFrame 会把每一帧中的所有DOM操作集中起来,在一次重绘或回流中就完成,并且重绘或回流的时间间隔紧紧跟随浏览器的刷新频率,一般来说,这个频率为每秒60帧。
2、在隐藏或不可见的元素中,requestAnimationFrame将不会进行重绘或回流,这当然就意味着更少的的cpu,gpu和内存使用量。

html部分代码

  <html lang="en">
    <head>
      <meta charset="UTF-8">
      <meta http-equiv="X-UA-Compatible" content="IE=edge">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
      <title>Document</title>
    </head>
    <body>
        <canvas id="apple" />
    </body>
  </html>

css部分代码

   body {
      height: 2500vh;
      background: #000;
    }

    canvas {
      position: fixed;
      max-width: 100vw;
      max-height: 100vh;
    }

这里图片都是在线的,如果想让效果更好,提前缓存出来所有图片,要不在滚动页面的时候可能会有空白的间隙。
获取图片的方法
const currentImg = index => (
index < 10
?
https://www.apple.com.cn/105/media/us/airpods-pro/2022/d2deeb8e-83eb-48ea-9721-f567cf0fffa8/anim/hero/large/000${index}.png
:
https://www.apple.com.cn/105/media/us/airpods-pro/2022/d2deeb8e-83eb-48ea-9721-f567cf0fffa8/anim/hero/large/00${index}.png
)

js部分代码

  const html = document.documentElement;
  const canvas = document.getElementById("apple");
  const context = canvas.getContext("2d");
  const imgCount  = 65;
  const currentImg = index => (
    index < 10 
     ? 
    `https://www.apple.com.cn/105/media/us/airpods-pro/2022/d2deeb8e-83eb-48ea-9721-f567cf0fffa8/anim/hero/large/000${index}.png`
     : 
     `https://www.apple.com.cn/105/media/us/airpods-pro/2022/d2deeb8e-83eb-48ea-9721-f567cf0fffa8/anim/hero/large/00${index}.png`
  )
  const preloadImg = () => {
    for (let i = 1; i < imgCount ; i++) {
      const img = new Image();
      img.src = currentImg(i);
    }
  };

  const img = new Image()
  img.src = currentImg(1);
  canvas.width=1440;
  canvas.height=810;
  img.onload=function(){
    context.drawImage(img, 0, 0);
  }

  const updateImg = index => {
    context.clearRect(0, 0,   canvas.width,   canvas.height)
    img.src = currentImg(index);
    context.drawImage(img, 0, 0);
  }

  window.addEventListener('scroll', () => {  
    const scrollTop = html.scrollTop;

    const maxScrollTop = html.scrollHeight - window.innerHeight;
    const scrollFraction = scrollTop / maxScrollTop;
    const index = Math.min(
      imgCount  - 1,
      Math.ceil(scrollFraction * imgCount )
    );
    requestAnimationFrame(() => updateImg(index + 1))
  });

  preloadImg()

核心代码
window.addEventListener(‘scroll’, () => {
const scrollTop = html.scrollTop;
const maxScrollTop = html.scrollHeight - window.innerHeight;
const scrollFraction = scrollTop / maxScrollTop;
const index = Math.min(
imgCount - 1,
Math.ceil(scrollFraction * imgCount )
);
要算出当前滑动后是应该显示第几张图片

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值