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';
|
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 {
|
export function raf(fn: FrameRequestCallback): number {
|
||||||
const requestAnimationFrame = root.requestAnimationFrame || rafPolyfill;
|
return inBrowser ? requestAnimationFrame(fn) : -1;
|
||||||
return requestAnimationFrame.call(root, fn);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function cancelRaf(id: number) {
|
export function cancelRaf(id: number) {
|
||||||
const cancelAnimationFrame = root.cancelAnimationFrame || root.clearTimeout;
|
if (inBrowser) {
|
||||||
cancelAnimationFrame.call(root, id);
|
cancelAnimationFrame(id);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// double raf for animation
|
// double raf for animation
|
||||||
|
Loading…
x
Reference in New Issue
Block a user