RequestAnimationFrame滞后于chrome时间轴

时间:2014-11-25 22:40:10

标签: javascript html5 google-chrome chromium requestanimationframe

我对DevTools中的Google Chrome和时间线标签有疑问。 我使用带有递归调用的window.requestAnimationFrame():

function animateRequestAnimationFrame(element, animation, timing, time) {
    (function nextAnimationFrame() {
        window.requestAnimationFrame(function (elapsed) {
            var progress = elapsed / time;

            if (progress < 1) {
                animation(element, timing(progress));
                nextAnimationFrame();
            } else {
                animation(element, timing(1));
            }
        });
    })();
}

在时间轴中,我看到了这一点:DevTools timeline。 为什么每个RequestAnimationFrame回调都不在帧的开头?

1 个答案:

答案 0 :(得分:0)

因为那是 requestAnimationFramedefinition

<块引用>

window.requestAnimationFrame() 方法告诉浏览器您希望执行动画,并请求浏览器在下次重绘之前调用指定的函数来更新动画。该方法将回调作为参数,在重绘之前调用