美文网首页
requestAnimationFrame 为动画而生

requestAnimationFrame 为动画而生

作者: G_whk | 来源:发表于2019-12-27 14:47 被阅读0次
定义?mdn链接了解一下:
[https://developer.mozilla.org/zh-CN/docs/Web/API/Window/requestAnimationFrame](https://developer.mozilla.org/zh-CN/docs/Web/API/Window/requestAnimationFrame)
具体用法和介绍
建议访问:
[https://juejin.im/post/5a82f0626fb9a06358657c9c](https://juejin.im/post/5a82f0626fb9a06358657c9c)
张鑫旭:
[https://www.zhangxinxu.com/wordpress/2013/09/css3-animation-requestanimationframe-tween-%E5%8A%A8%E7%94%BB%E7%AE%97%E6%B3%95/](https://www.zhangxinxu.com/wordpress/2013/09/css3-animation-requestanimationframe-tween-%E5%8A%A8%E7%94%BB%E7%AE%97%E6%B3%95/)

最近无时间自己总结,记录一下以防忘记,哈哈哈哈。

兼容

requestAnimationFrame 低版本自然是不支持,嗯,需要你兼容低版本时,下面的神奇代码也许会帮助你(来自张鑫旭大神的博客)。

(function() {
    var lastTime = 0;
    var vendors = ['webkit', 'moz'];
    for(var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {
        window.requestAnimationFrame = window[vendors[x] + 'RequestAnimationFrame'];
        window.cancelAnimationFrame = window[vendors[x] + 'CancelAnimationFrame'] ||    // Webkit中此取消方法的名字变了
                                      window[vendors[x] + 'CancelRequestAnimationFrame'];
    }

    if (!window.requestAnimationFrame) {
        window.requestAnimationFrame = function(callback, element) {
            var currTime = new Date().getTime();
            var timeToCall = Math.max(0, 16.7 - (currTime - lastTime));
            var id = window.setTimeout(function() {
                callback(currTime + timeToCall);
            }, timeToCall);
            lastTime = currTime + timeToCall;
            return id;
        };
    }
    if (!window.cancelAnimationFrame) {
        window.cancelAnimationFrame = function(id) {
            clearTimeout(id);
        };
    }
}());

相关文章

  • requestAnimationFrame 为动画而生

    定义?mdn链接了解一下: 具体用法和介绍 最近无时间自己总结,记录一下以防忘记,哈哈哈哈。 兼容 request...

  • HTML5新API

    webAPI requestAnimationFrame:创建动画,代替setInterval FileReade...

  • 动画requestAnimationFrame

    requestAnimationFrame是浏览器用于定时循环操作的一个接口,类似于setTimeout,主要用途...

  • [React Native]动画-LayoutAnimation

    实现动画的几种方式: requestAnimationFrame setNativeProps LayoutAni...

  • js 动画

    1.浏览器动画API requestAnimationFrame cancelAnimationFrame

  • Canvas 动效理论

    requestAnimationFrame() 动画原理:人的视觉暂留为0.1-0.4s,当静态图片更迭速度快过视...

  • 2017-12-26

    requestAnimationFrame 一、流畅的web动画 Web 动画帧率(FPS): 每秒钟画面更新的次...

  • 速度版运动框架

    一、requestAnimationFrame定时器做动画的缺点:有小小的误差;请求动画帧(requestAnim...

  • requestAnimationFrame 请求动画帧 一定懂

    requestAnimationFrame 在网页开发中实现动画实现动画的方式有下面几种。css中的 transi...

  • JS动画--requestAnimationFrame

    简介 requestAnimationFrame直译过来就是“请求动画帧”,是html新出的特性API可以用来实现...

网友评论

      本文标题:requestAnimationFrame 为动画而生

      本文链接:https://www.haomeiwen.com/subject/vraroctx.html