微信小程序:实现轮播图3秒滚动

Posted PHP急先锋

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序:实现轮播图3秒滚动相关的知识,希望对你有一定的参考价值。

wxml模板:(数据一维数组)

<scroll-view  scroll-y="true">
      <swiper autoplay="auto" interval="3000" duration="500">
          <block wx:for="{{home_pics}}"  wx:for-index="index">
              <swiper-item>
                  <view class="ar_coverpath">
                    <image src="{{home_pics[index]}}" mode="aspectFill"/>
                </view>
              </swiper-item>
          </block>
      </swiper>
    </scroll-view>

wxml模板:(数据二维数组)

<scroll-view  scroll-y="true" style="height:{{scrollHeight}}px;" 
        class="list" bindscrolltolower="bindDownLoad" bindscroll="scroll" bindscrolltoupper="refresh">
    <swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
        <block wx:for="{{ad_list}}" wx:for-item="item" wx:for-index="index">
            <swiper-item>
                <image src="{{item.ad_file}}" class="slide-image" style="height:{{windowWidth * 0.375}}px !important"/>
            </swiper-item>
        </block>
    </swiper>
</scroll-view>

 

以上是关于微信小程序:实现轮播图3秒滚动的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序bnner滚动

小程序轮播图样式

微信小程序缓存用户密码及轮播

微信小程序之轮播图的实现(附效果图和源码)

微信小程序之轮播图

微信小程序实现横向滚动文字