Skip to content

Instantly share code, notes, and snippets.

@ehgoodenough
Created April 9, 2015 14:51
Show Gist options
  • Save ehgoodenough/4127a7d616ea70be82df to your computer and use it in GitHub Desktop.
Save ehgoodenough/4127a7d616ea70be82df to your computer and use it in GitHub Desktop.
var Loop = function(func) {
(function loop(time) {
func(Math.min((Date.now() - time) / 1000, 1))
window.requestAnimationFrame(loop.bind(null, Date.now()))
})(Date.now())
}
module.exports = Loop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment