mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(transition): fix requestAnimationFrame is not executed in the background (#5131)
This commit is contained in:
parent
ebbc7a3e68
commit
270474f541
@ -1,5 +1,5 @@
|
||||
import { isDef, isNumber, isPlainObject, isPromise } from './validator';
|
||||
import { canIUseGroupSetData, canIUseNextTick, getSystemInfoSync } from './version';
|
||||
import { canIUseGroupSetData, canIUseNextTick } from './version';
|
||||
|
||||
export { isDef } from './validator';
|
||||
export { getSystemInfoSync } from './version';
|
||||
@ -28,21 +28,9 @@ export function addUnit(value?: string | number): string | undefined {
|
||||
}
|
||||
|
||||
export function requestAnimationFrame(cb: () => void) {
|
||||
const systemInfo = getSystemInfoSync();
|
||||
|
||||
if (systemInfo.platform === 'devtools') {
|
||||
return setTimeout(() => {
|
||||
cb();
|
||||
}, 1000 / 30);
|
||||
}
|
||||
|
||||
return wx
|
||||
.createSelectorQuery()
|
||||
.selectViewport()
|
||||
.boundingClientRect()
|
||||
.exec(() => {
|
||||
cb();
|
||||
});
|
||||
return setTimeout(() => {
|
||||
cb();
|
||||
}, 1000 / 30);
|
||||
}
|
||||
|
||||
export function pickExclude(obj: unknown, keys: string[]) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user