fix(Collapse): 修复没有动画效果 @rex-zsd (#1140)

This commit is contained in:
rex 2018-12-25 11:12:27 +08:00 committed by neverland
parent 6fd37fc5b9
commit c75d37e61b
3 changed files with 39 additions and 13 deletions

View File

@ -27,8 +27,6 @@
&__wrapper {
overflow: hidden;
will-change: max-height;
transition: max-height @collapse-item-transition-duration ease-in-out;
}
&__content {

View File

@ -33,6 +33,13 @@ VantComponent({
expanded: false
},
beforeCreate() {
this.animation = wx.createAnimation({
duration: 300,
timingFunction: 'ease-in-out'
});
},
methods: {
updateExpanded() {
if (!this.parent) {
@ -56,16 +63,27 @@ VantComponent({
this.set({ expanded });
},
updateStyle(expanded) {
if (expanded) {
this.set({
contentHeight: 'auto'
});
} else {
this.set({
contentHeight: 0
});
}
updateStyle(expanded: boolean) {
this.getRect('.van-collapse-item__content').then(res => {
const animationData = this.animation
.height(expanded ? res.height : 0)
.step()
.export();
if (expanded) {
this.set({ animationData });
} else {
this.set(
{
contentHeight: res.height + 'px'
},
() => {
setTimeout(() => {
this.set({ animationData });
}, 20);
}
);
}
});
},
onClick() {
@ -79,6 +97,14 @@ VantComponent({
const currentName = name == null ? index : name;
this.parent.switch(currentName, !expanded);
},
onTransitionEnd() {
if (this.data.expanded) {
this.set({
contentHeight: 'auto'
});
}
}
}
});

View File

@ -29,7 +29,9 @@
</van-cell>
<view
class="van-collapse-item__wrapper"
style="max-height: {{ contentHeight }};"
style="height: {{ contentHeight }};"
animation="{{ animationData }}"
bind:transitionend="onTransitionEnd"
>
<view
class="van-collapse-item__content content-class"