您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關微信小程序用視圖容器(swiper)組件創建輪播圖的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
一、視圖容器(Swiper)
1、swiper:滑塊視圖容器
微信官方文檔
二、swiper應用
1、頁面邏輯(index.js)
Page({ data: { imgUrls: [ { link: '/pages/index/index', url: '/images/001.jpg' }, { link: '/pages/list/list', url: '/images/002.jpg' }, { link: '/pages/list/list', url: '/images/003.jpg' } ], indicatorDots: true, //小點 indicatorColor: "white",//指示點顏色 activeColor: "coral",//當前選中的指示點顏色 autoplay: false, //是否自動輪播 interval: 3000, //間隔時間 duration: 3000, //滑動時間 }
其中 imgUrls 是我們輪播圖中將要用到的 圖片地址和 跳轉鏈接
indicatgorDots 是否出現焦點
autoplay 是否自動播放
interval 自動播放間隔時間
duration 滑動動畫時間
2、頁面結構(index.wxml)
<!--輪播圖--> <swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}" indicator-color="{{indicatorColor}}" indicator-active-color="{{activeColor}}"> <block wx:for="{{imgUrls}}"> <swiper-item> <navigator url="{{item.link}}" hover-class="navigator-hover"> <image src="{{item.url}}" class="slide-image" width="355" height="200" /> </navigator> </swiper-item> </block> </swiper>
注意:swiper 千萬不要在外面 加上任何標簽 例如 <view> 之類的 ,如果加了可能會導致輪播圖出不來
3、頁面樣式(index.wxss)
/*輪播圖*/ .slide-image { width: 100%; }
三、小程序效果圖
趕快動手實踐就可以看到如圖所示效果圖:
關于微信小程序用視圖容器(swiper)組件創建輪播圖的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。