Skip to content

Instantly share code, notes, and snippets.

@riffrain
Created January 4, 2020 10:37
Show Gist options
  • Save riffrain/dd08140be7eda740ecf242fe753acc09 to your computer and use it in GitHub Desktop.
Save riffrain/dd08140be7eda740ecf242fe753acc09 to your computer and use it in GitHub Desktop.
export const animateFrame = ((callback) => {
return window.requestAnimationFrame
|| function (cb) {
return window.setTimeout(cb, 1000/60);
};
})();
export const cancelAnimateFrame = window.cancelAnimationFrame || window.clearTimeout;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment