Skip to content

Instantly share code, notes, and snippets.

@davidpett
Last active December 10, 2015 00:59
Show Gist options
  • Save davidpett/4355256 to your computer and use it in GitHub Desktop.
Save davidpett/4355256 to your computer and use it in GitHub Desktop.
cross browser requestAnimationFrame
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