mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
fix(Collapse): animate invalid on multi clicks (#4567)
This commit is contained in:
parent
7f3614997e
commit
1860ddfcb1
@ -1,43 +1,5 @@
|
||||
import { canIUseAnimate } from '../common/version';
|
||||
import { getRect } from '../common/utils';
|
||||
|
||||
function useAnimate(
|
||||
context: WechatMiniprogram.Component.TrivialInstance,
|
||||
expanded: boolean,
|
||||
mounted: boolean,
|
||||
height: number
|
||||
) {
|
||||
const selector = '.van-collapse-item__wrapper';
|
||||
if (expanded) {
|
||||
context.animate(
|
||||
selector,
|
||||
[
|
||||
{ height: 0, ease: 'ease-in-out', offset: 0 },
|
||||
{ height: `${height}px`, ease: 'ease-in-out', offset: 1 },
|
||||
{ height: `auto`, ease: 'ease-in-out', offset: 1 },
|
||||
],
|
||||
mounted ? 300 : 0,
|
||||
() => {
|
||||
context.clearAnimation(selector);
|
||||
}
|
||||
);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
context.animate(
|
||||
selector,
|
||||
[
|
||||
{ height: `${height}px`, ease: 'ease-in-out', offset: 0 },
|
||||
{ height: 0, ease: 'ease-in-out', offset: 1 },
|
||||
],
|
||||
300,
|
||||
() => {
|
||||
context.clearAnimation(selector);
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
function useAnimation(
|
||||
context: WechatMiniprogram.Component.TrivialInstance,
|
||||
expanded: boolean,
|
||||
@ -86,8 +48,6 @@ export function setContentAnimate(
|
||||
getRect(context, '.van-collapse-item__content')
|
||||
.then((rect) => rect.height)
|
||||
.then((height: number) => {
|
||||
canIUseAnimate()
|
||||
? useAnimate(context, expanded, mounted, height)
|
||||
: useAnimation(context, expanded, mounted, height);
|
||||
useAnimation(context, expanded, mounted, height);
|
||||
});
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user