requestAnimationFrame

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了requestAnimationFrame相关的知识,希望对你有一定的参考价值。

requestAnimationFrame是实现如“最优帧速率”、“选择绘制下一帧的最佳时机”的功能,它的兼容性写法:

var rAF = window.requestAnimationFrame    ||
    window.webkitRequestAnimationFrame    ||
    window.mozRequestAnimationFrame        ||
    window.oRequestAnimationFrame        ||
    window.msRequestAnimationFrame        ||
    function (callback) { window.setTimeout(callback, 1000 / 60); };

 

以上是关于requestAnimationFrame的主要内容,如果未能解决你的问题,请参考以下文章

QML Canvas.requestAnimationFrame 爆炸

requestAnimationFrame 垃圾回收

深入理解requestAnimationFrame

使用requestAnimationFrame polyfill时是否需要清除超时?

javascript requestAnimationFrame vs. setTimeout

requestAnimationFrame之缓动的应用