You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
446 B
14 lines
446 B
export default function requestAnimationFrame(fn) {
|
|
var method = window.requestAnimationFrame ||
|
|
// @ts-ignore
|
|
window.webkitRequestAnimationFrame ||
|
|
// @ts-ignore
|
|
window.mozRequestAnimationFrame ||
|
|
// @ts-ignore
|
|
window.msRequestAnimationFrame ||
|
|
function (f) {
|
|
return setTimeout(f, 16);
|
|
};
|
|
return method(fn);
|
|
}
|
|
//# sourceMappingURL=request-animation-frame.js.map
|