Skip to content

Instantly share code, notes, and snippets.

@emanuel-sanabria-developer
Created July 24, 2013 00:55
Show Gist options
  • Save emanuel-sanabria-developer/6067360 to your computer and use it in GitHub Desktop.
Save emanuel-sanabria-developer/6067360 to your computer and use it in GitHub Desktop.
requestAnimFrame_pi
/*
* Request new frame by Paul Irish.
* 60 FPS.
*/
window.requestAnimFrame = (function() {
return window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
function(callback) {
window.setTimeout(callback, 1000 / FPS);
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment