ant-design/components/_util/getRequestAnimationFrame.tsx
偏右 4f77a2e5f5 Fix back top ssr (#3418)
* improve code style

* move getRequestAnimationFrame to util

* Fix ssr problem in BackTop, close #3343
2016-10-13 16:26:15 +08:00

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);
}