principle中的动效怎么实现
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了principle中的动效怎么实现相关的知识,希望对你有一定的参考价值。
参考技术A 1. 简单的动效无法敏捷设计日常忙碌的工作中,做出的动效质量不高,因为精调成本太高,想要获得流畅、弹性的动效,需要各种精调布塞尔曲线、图像缩放。另外,使用AE渲染出的mov文件导入ps转化为GIF整个过程非常缓慢,如果是10秒以上的视频文件在ps打开每次都要等1分钟以上,如果是macbookpro还会因此开始呼吸,心疼...
2. 无法交互始终是痛点
作为视频处理软件,AE最终生成的是一个动效视频演示,更像是讲述了一个故事。而在界面的动效设计中,我们更需要的是(面向PM、开发者、用户测试的)基于真实场景的交互和使用体验。
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 )
);
要算出当前滑动后是应该显示第几张图片
以上是关于principle中的动效怎么实现的主要内容,如果未能解决你的问题,请参考以下文章