uniapp轮播图swiper的使用

circular   滑到最后一页再右滑可以直接连接到第一页,不添加则拉不动

autoplay 轮播图自动滚动轮播

interval    自动切换时间间隔,默认5000 :interval="5000"

indicator-dots   是否显示指示点

indicator-color="#000"   未选中指示点颜色

indicator-active-color="#fff" 当前选中小圆点颜色

vertical   滑动方向是否纵向

<swiper :circular="true" :autoplay="true" 
:interval="10000" :duration="1000"  :indicator-dots="true" 
indicator-color="rgba(0, 0, 0, 0.4)" indicator-active-color="#FFFFFF">
	<!-- v-for循环遍历数组 -->
	<swiper-item v-for="(item,index) in swipers">
		<image :src="item.image" class="images w100 br10"></image>
	</swiper-item>
</swiper>

猜你喜欢

转载自blog.csdn.net/stars______/article/details/128453140