如何修改间隔速度?

问题描述 投票:0回答:3

这个问题是针对这个组件的:https://ant.design/components/carousel/#header

我尝试了 autoplayInterval={1000} 但没有成功。

carousel intervals autoplay ant-design-pro
3个回答
4
投票

autoPlaySpeed
就是你想要的道具。您可以设置
autoPlaySpeed={1000}
,默认值为3000ms。轮播组件演示使用“react-slick”,这里是 autoPlaySpeedreference,您还可以检查此插件的其他附加 API。检查this代码片段。


1
投票

你需要autoplaySpeed={1000},检查字母


0
投票

尝试使用v-bind:

:autoplaySpeed='1000'

这在 4.2.5 版本中对我有用

© www.soinside.com 2019 - 2024. All rights reserved.