我正在使用
制作一些图像演示setInterval(function() {
$('.img').css('someprop', randomValue());
}, 2000);
..其中.img启用了css过渡,因此动画。
当我转到另一个标签几分钟并回到此选项卡时,动画会疯狂5-6秒并立即赶上所有内容。
当标签不可见时,有没有办法让我停止累积未显示的动画?解决这个问题的正确方法是什么?我理解浏览器在窗口没有渲染时停止动画,出于性能原因,但有没有办法告诉它不要试图赶上“错过”的所有内容?
答案 0 :(得分:1)
window.requestAnimationFrame
完全符合您的要求,只有当标签为"有效时才会动画/运行" (可见)。
有关详细信息,请参阅MDN page on requestAnimationFrame。
保罗爱尔兰的示例代码,发布在此作为后代(here's a link to his explanation page)
// requestAnim shim layer by Paul Irish
window.requestAnimFrame = (function(){
return window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
function(/* function */ callback, /* DOMElement */ element){
window.setTimeout(callback, 1000 / 60);
};
})();
// example code from mr doob : http://mrdoob.com/lab/javascript/requestanimationframe/
var canvas, context, toggle;
init();
animate();
function init() {
canvas = document.createElement( 'canvas' );
canvas.width = 512;
canvas.height = 512;
context = canvas.getContext( '2d' );
document.body.appendChild( canvas );
}
function animate() {
requestAnimFrame( animate );
draw();
}
function draw() {
var time = new Date().getTime() * 0.002;
var x = Math.sin( time ) * 192 + 256;
var y = Math.cos( time * 0.9 ) * 192 + 256;
toggle = !toggle;
context.fillStyle = toggle ? 'rgb(200,200,20)' : 'rgb(20,20,200)';
context.beginPath();
context.arc( x, y, 10, 0, Math.PI * 2, true );
context.closePath();
context.fill();
}