動畫我正在使用JavaScript動畫:增加FPS以JavaScript
function animate(){
window.setTimeout(function(){
//Do a new frame and recall this function till the animation is finished
}, 1000/FPS);//FPS Default 15 approximately 60FPS
}
animate();
我不知道我怎樣才能提高FPS不失品質?使用已經內置的css3不是一個選項,因爲我有自定義的動畫。
你嘗試過'window.requestAnimationFrame'嗎? – 2014-07-16 17:35:07