Skip to content

Instantly share code, notes, and snippets.

@numbcoder
Created January 5, 2012 07:04
Show Gist options
  • Save numbcoder/1564086 to your computer and use it in GitHub Desktop.
Save numbcoder/1564086 to your computer and use it in GitHub Desktop.
new animation method
requestAnimationFrame = window.requestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.msRequestAnimationFrame ||
window.oRequestAnimationFrame ||
function(callback) { setTimeout(callback, 1000 / 60); };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment