溫馨提示×

溫馨提示×

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

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

微信小程序用視圖容器(swiper)組件創(chuàng)建輪播圖的方法

發(fā)布時間:2020-06-23 09:55:07 來源:億速云 閱讀:182 作者:清晨 欄目:web開發(fā)

這篇文章將為大家詳細(xì)講解有關(guān)微信小程序用視圖容器(swiper)組件創(chuàng)建輪播圖的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

一、視圖容器(Swiper)

1、swiper:滑塊視圖容器

微信官方文檔

微信小程序用視圖容器(swiper)組件創(chuàng)建輪播圖的方法

微信小程序用視圖容器(swiper)組件創(chuàng)建輪播圖的方法

二、swiper應(yīng)用

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",//當(dāng)前選中的指示點顏色
 autoplay: false, //是否自動輪播
 interval: 3000, //間隔時間
 duration: 3000, //滑動時間
 }

其中 imgUrls 是我們輪播圖中將要用到的 圖片地址和 跳轉(zhuǎn)鏈接

    indicatgorDots 是否出現(xiàn)焦點

    autoplay 是否自動播放

    interval 自動播放間隔時間

    duration 滑動動畫時間

2、頁面結(jié)構(gòu)(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 千萬不要在外面  加上任何標(biāo)簽 例如 <view> 之類的 ,如果加了可能會導(dǎo)致輪播圖出不來

3、頁面樣式(index.wxss)

/*輪播圖*/
.slide-image {
 width: 100%;
}

三、小程序效果圖

趕快動手實踐就可以看到如圖所示效果圖:

微信小程序用視圖容器(swiper)組件創(chuàng)建輪播圖的方法

關(guān)于微信小程序用視圖容器(swiper)組件創(chuàng)建輪播圖的方法就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

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

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

AI