Skip to content

Instantly share code, notes, and snippets.

@SirPepe
Created May 9, 2012 12:07
Show Gist options
  • Save SirPepe/2644038 to your computer and use it in GitHub Desktop.
Save SirPepe/2644038 to your computer and use it in GitHub Desktop.
requestAnimationFrame
/* requestAnimationFrame für alle */
var reqAniFra = (function(){
return window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
function(callback){
setTimeout(callback, 1000 / 60);
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment