AllanHao / blog-comments

博客评论
0 stars 0 forks source link

浅析RequestAnimationFrame — Allan Blog #42

Open AllanHao opened 5 years ago

AllanHao commented 5 years ago

https://allanhao.com/2019/08/07/requestanimationframe/

在Web应用中,实现动画效果的方法比较多,JavaScript 中可以通过定时器 setTimeout 来实现,css3 可以使用 transition 和 animation 来实现,html5 中的 canvas 也可以实现。除此之外,html5 还提供一个专门用于请求动画的 API,即 requestAnimationFrame(rAF),顾名思义就是 “请求动画帧”。