Skip to content

Instantly share code, notes, and snippets.

@antfu
Created May 21, 2018 08:17
Show Gist options
  • Save antfu/a87e76b2eb767817f6a3eb4d1cdbb491 to your computer and use it in GitHub Desktop.
Save antfu/a87e76b2eb767817f6a3eb4d1cdbb491 to your computer and use it in GitHub Desktop.
requestAnimationFrame Pollyfile
window.requestAnimationFrame = (function () {
return window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
function (callback) {
window.setTimeout(callback, 1000 / 60);
};
})();
@Mingeax
Copy link

Mingeax commented Aug 30, 2023

Pollyfile 拼错了.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment