diff --git a/packages/vant/src/rolling-text/RollingTextItem.tsx b/packages/vant/src/rolling-text/RollingTextItem.tsx index 6a9c1d088..cbc50865d 100644 --- a/packages/vant/src/rolling-text/RollingTextItem.tsx +++ b/packages/vant/src/rolling-text/RollingTextItem.tsx @@ -34,28 +34,26 @@ export default defineComponent({ ? props.figureArr.slice().reverse() : props.figureArr ); - const totalHeight = computed( - () => props.height * props.figureArr.length - props.height - ); - const translateValPx = computed(() => `-${totalHeight.value}px`); - - const itemStyleObj = { + const translatePx = computed(() => { + const totalHeight = props.height * (props.figureArr.length - 1); + return `-${totalHeight}px`; + }); + const itemStyle = computed(() => ({ lineHeight: addUnit(props.height), - }; - - const getStyle = () => ({ + })); + const rootStyle = computed(() => ({ height: addUnit(props.height), - '--van-translate': translateValPx.value, + '--van-translate': translatePx.value, '--van-duration': props.duration + 's', '--van-delay': props.delay + 's', - }); + })); return () => ( -
+
{Array.isArray(newFigureArr.value) && newFigureArr.value.map((figure) => ( -
+
{figure}
))}