溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

微信小程序如何實(shí)現(xiàn)輪播圖效果

發(fā)布時間:2021-06-09 10:04:05 來源:億速云 閱讀:362 作者:小新 欄目:移動開發(fā)

這篇文章主要介紹微信小程序如何實(shí)現(xiàn)輪播圖效果,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

Swiper是滑動特效插件,面向手機(jī)、平板電腦等移動終端。能實(shí)現(xiàn)觸屏焦點(diǎn)圖、觸屏Tab切換、觸屏多圖切換等常用效果。是目前應(yīng)用較廣泛的移動端網(wǎng)頁觸摸內(nèi)容滑動插件。

實(shí)例:

微信小程序如何實(shí)現(xiàn)輪播圖效果

第一步:WXML文件:

<swiper indicator-dots="{{indicatorDots}}"
 autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
 <block wx:for="{{imgUrls}}" wx:key="unique">
  <swiper-item>
   <image src="{{item}}" class="slide-image"/>
  </swiper-item>
 </block></swiper>

第二步:js文件:

Page({  data: {
    imgUrls: [      'http://img02.tooopen.com/images/20150928/tooopen_sy_143912755726.jpg',      'http://img06.tooopen.com/images/20160818/tooopen_sy_175866434296.jpg',      'http://img06.tooopen.com/images/20160818/tooopen_sy_175833047715.jpg'
    ],
    indicatorDots: true,
    autoplay: true,
    interval: 3000,
    duration: 500,
 
  },
})

介紹一下參數(shù)的意思:

   indicatorDots: true,
    autoplay: true,
    interval: 3000,
    duration: 500,

indicator-dots  Boolean     false   是

否顯示面板指示點(diǎn)
autoplay    Boolean     false   是否自動切換
interval    Number  5000    自動切換時間間隔
duration    Number  500     滑動動畫時長

以上是“微信小程序如何實(shí)現(xiàn)輪播圖效果”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI