From 83c90c4624c299adfb20fe62a4391a554adfba9f Mon Sep 17 00:00:00 2001 From: nemo-shen Date: Wed, 12 Jan 2022 16:52:52 +0800 Subject: [PATCH] fix(NoticeBar): fix init translateX (#4746) --- packages/notice-bar/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/notice-bar/index.ts b/packages/notice-bar/index.ts index cf4d2854..fbb57825 100644 --- a/packages/notice-bar/index.ts +++ b/packages/notice-bar/index.ts @@ -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(), });