Skip to content

Instantly share code, notes, and snippets.

@premasagar
Forked from louisremi/animLoopX.js
Created September 24, 2011 00:47
Show Gist options
  • Save premasagar/1238789 to your computer and use it in GitHub Desktop.
Save premasagar/1238789 to your computer and use it in GitHub Desktop.
Animation loop with requestAnimationFrame
function animLoop( render, element ){
function loop( now ) {
requestAnimationFrame( loop, element );
render( now || +new Date );
}
loop();
}
// Usage
animLoop(function() {
// rendering code goes here
}, document.getElementById("animationWrapper") );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment