mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(NoticeBar): fix init translateX (#4746)
This commit is contained in:
parent
0b0cca10b1
commit
83c90c4624
@ -91,19 +91,19 @@ VantComponent({
|
|||||||
delay,
|
delay,
|
||||||
});
|
});
|
||||||
|
|
||||||
this.scroll();
|
this.scroll(true);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
scroll() {
|
scroll(isInit = false) {
|
||||||
this.timer && clearTimeout(this.timer);
|
this.timer && clearTimeout(this.timer);
|
||||||
this.timer = null;
|
this.timer = null;
|
||||||
|
|
||||||
this.setData({
|
this.setData({
|
||||||
animationData: this.resetAnimation
|
animationData: this.resetAnimation
|
||||||
.translateX(this.wrapWidth)
|
.translateX(isInit ? 0 : this.wrapWidth)
|
||||||
.step()
|
.step()
|
||||||
.export(),
|
.export(),
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user