fix(NoticeBar): fix init translateX (#4746)

This commit is contained in:
nemo-shen 2022-01-12 16:52:52 +08:00 committed by GitHub
parent 0b0cca10b1
commit 83c90c4624
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,19 +91,19 @@ VantComponent({
delay,
});
this.scroll();
this.scroll(true);
}
});
});
},
scroll() {
scroll(isInit = false) {
this.timer && clearTimeout(this.timer);
this.timer = null;
this.setData({
animationData: this.resetAnimation
.translateX(this.wrapWidth)
.translateX(isInit ? 0 : this.wrapWidth)
.step()
.export(),
});