Skip to content

Instantly share code, notes, and snippets.

@eklimcz-zz
Created July 25, 2011 16:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eklimcz-zz/1104582 to your computer and use it in GitHub Desktop.
Save eklimcz-zz/1104582 to your computer and use it in GitHub Desktop.
requst Animation frame shim
// shim layer with setTimeout fallback
window.requestAnimFrame = (function(){
return window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
function(/* function */ callback, /* DOMElement */ element){
window.setTimeout(callback, 1000 / 60);
};
})();
// usage:
// instead of setInterval(render, 16) ....
(function animloop(){
render();
requestAnimFrame(animloop, element);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment