Skip to content

Instantly share code, notes, and snippets.

@aapis
Created June 14, 2016 19:57
Show Gist options
  • Select an option

  • Save aapis/170dc5cbbc7fd0612e2745b3a6f7cddd to your computer and use it in GitHub Desktop.

Select an option

Save aapis/170dc5cbbc7fd0612e2745b3a6f7cddd to your computer and use it in GitHub Desktop.
Cross browser vanilla JS animation
function animate(callback, timeout){
var default_timeout = timeout || 50; // ms
if(window['requestAnimationFrame']){
window.requestAnimationFrame.call(null, callback);
}else {
window.setTimeout.call(null, callback, default_timeout);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment