mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
perf(@vant/use): remove raf polyfill (#9544)
This commit is contained in:
parent
38b1be3ac2
commit
b6cd212a77
@ -1,25 +1,13 @@
|
||||
export const inBrowser = typeof window !== 'undefined';
|
||||
|
||||
const root = (inBrowser ? window : global) as Window;
|
||||
|
||||
let prev = Date.now();
|
||||
|
||||
function rafPolyfill(fn: FrameRequestCallback): number {
|
||||
const curr = Date.now();
|
||||
const ms = Math.max(0, 16 - (curr - prev));
|
||||
const id = setTimeout(fn, ms);
|
||||
prev = curr + ms;
|
||||
return id;
|
||||
}
|
||||
|
||||
export function raf(fn: FrameRequestCallback): number {
|
||||
const requestAnimationFrame = root.requestAnimationFrame || rafPolyfill;
|
||||
return requestAnimationFrame.call(root, fn);
|
||||
return inBrowser ? requestAnimationFrame(fn) : -1;
|
||||
}
|
||||
|
||||
export function cancelRaf(id: number) {
|
||||
const cancelAnimationFrame = root.cancelAnimationFrame || root.clearTimeout;
|
||||
cancelAnimationFrame.call(root, id);
|
||||
if (inBrowser) {
|
||||
cancelAnimationFrame(id);
|
||||
}
|
||||
}
|
||||
|
||||
// double raf for animation
|
||||
|
Loading…
x
Reference in New Issue
Block a user