Skip to content

Instantly share code, notes, and snippets.

@avhm
Created July 14, 2011 09:40
Show Gist options
  • Save avhm/1082185 to your computer and use it in GitHub Desktop.
Save avhm/1082185 to your computer and use it in GitHub Desktop.
Request Animation Frame Fallback
window.requestAnimFrame = (function(){
return window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
function(callback){
window.setTimeout(callback, 1000 / 60);
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment