微信小程序中怎么做无缝轮播

来自:互联网
时间:2020-03-23
阅读:
免费资源网 - https://freexyz.cn/

<a href=https://www.freexyz.cn/tag/weixin.html target=_blank class=infotextkey>微信</a>小程序中怎么做无缝轮播

微信小程序中怎么做无缝轮播

在index.js文件中定义topScroll数组以及swiper的各个属性值,其属性代表什么含义参考开发文档https://mp.weixin.QQ.com/debug/wxadoc/dev/component/swiper.html?t=1476197489605

微信小程序中可以使用swiper组件实现轮播效果,添加autoplay属性可以实现自动播放,添加circular属性可以实现无缝轮播。

<swiper circular="{{circular}}" indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
    <block wx:for="{{topScroll}}" wx:key="item.id">
        <swiper-item>
            <image src="{{item.url}}" class="slide-image"/>
        </swiper-item>
    </block>
</swiper>
免费资源网 - https://freexyz.cn/
返回顶部
顶部