Different Speed Of Animation RequestAnimFrame Javascript
I have a problem with window.requestAnimFrame. It works in different ways in FF,Chrome and in IE9,Opera. For example this http://jsfiddle.net/vZP3u/2/ (tacked from another questio
Solution 1:
Opera and IE do not support requestAnimationFrame
yet. So your code runs at 33ms setTimeout
fallback.
More ontopic:
http://paulirish.com/2011/requestanimationframe-for-smart-animating/
http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating
https://developer.mozilla.org/en/DOM/window.requestAnimationFrame
Post a Comment for "Different Speed Of Animation RequestAnimFrame Javascript"