mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
13 lines
416 B
TypeScript
13 lines
416 B
TypeScript
|
export default function getRequestAnimationFrame() {
|
||
|
if (typeof window === 'undefined') {
|
||
|
return () => {};
|
||
|
}
|
||
|
if (window.requestAnimationFrame) {
|
||
|
return window.requestAnimationFrame;
|
||
|
}
|
||
|
const prefix = ['moz', 'ms', 'webkit'].filter(key => `${key}RequestAnimationFrame` in window)[0];
|
||
|
return prefix
|
||
|
? window[`${prefix}RequestAnimationFrame`]
|
||
|
: callback => setTimeout(callback, 1000 / 60);
|
||
|
}
|