微信小程序?qū)崿F(xiàn)帶縮略圖輪播效果
本文實(shí)例為大家分享了微信小程序?qū)崿F(xiàn)實(shí)現(xiàn)輪播效果展示的具體代碼,供大家參考,具體內(nèi)容如下
wxml:
<view id="content"> <!--banner--> <view class="recommend"> <view class="swiper-container"> <swiper autoplay="auto" interval="5000" duration="500" current="{{swiperCurrent}}" circular="{{circular}}" bindchange="swiperChange" class="swiper"> <block wx:for="{{slider}}" wx:key="unique"> <swiper-item data-id="{{item.id}}" data-url="{{item.linkUrl}}" class="dot{{index == swiperCurrent ? ' active' : ''}}" bindtap="chuangEvents" id="{{index}}"> <image src="{{item.picUrl}}" class="img"></image> <span>{{item.index+1}}</span> </swiper-item> </block> </swiper> <view class="dots"> <swiper autoplay="auto" interval="5000" display-multiple-items="7" duration="500" current="{{dotsCurrent}}" circular="{{circular}}" bindchange="dotsChange"> <block wx:for="{{slider}}" wx:key="unique"> <swiper-item data-id="{{item.id}}" class="dot{{index == swiperCurrent ? ' active' : ''}}" bindtap="chuangEvent" id="{{index}}"> <image src="{{item.picUrl}}" class="imgs"></image> </swiper-item> </block> </swiper> </view> </view> </view> </view>
wxss:
/* pages/shouye/shouye.wxss */ page { background: #333; width: 100%; height: 100%; overflow: hidden; } #content { background: #333; width: 100%; height: 100%; overflow: hidden; } a { width: 100%; height: 50px; overflow: hidden; } /*banner輪播 */ .swiper-container { margin-top: 23%; position: relative; } .swiper-container .swiper { height: 600rpx; } .swiper-container .swiper .img { width: 100%; height: 100%; } .swiper-container .dots { position: fixed; height: 80px; right: 0rpx; width: 100%; bottom: 0rpx; } .swiper-container .dots .dot { /* margin: auto 3px; */ /* width: 58px !important; */ height: 65px !important; /* background: #333; */ /* transition: all 0.6s; */ } .swiper-container .dots .dot.active .imgs { width: 100% !important; height: 100%; margin: 0% auto; } .imgs { width: 85%; display: block; margin: 5% auto; height: 90%; } .swiper-container .dotes { position: absolute; right: 40rpx; bottom: 20rpx; display: flex; justify-content: center; } .swiper-container .dotes .dote { margin: 0 10rpx; width: 28rpx; height: 28rpx; background: #fff; border-radius: 50%; transition: all 0.6s; font: 300 18rpx/28rpx "microsoft yahei"; text-align: center; } .swiper-container .dotes .dote.actives { background: #f80; color: #fff; }
js
//banner Page({ data: { //輪播圖 slider: [], swiperCurrent: 3, slider: [{ url: '', picUrl: 'images/1.jpg' }, { picUrl: 'images/5.jpg' }, { picUrl: 'images/3.jpg' }, { picUrl: 'images/4.jpg' }, { picUrl: 'images/5.jpg' }, { picUrl: 'images/3.jpg' }, { picUrl: 'images/5.jpg' }, { picUrl: 'images/3.jpg' }, { picUrl: 'images/5.jpg' }, { picUrl: 'images/3.jpg' }, { picUrl: 'images/5.jpg' }, { picUrl: 'images/3.jpg' } ], indicatorDots: true, autoplay: true, interval: 2000, duration: 1000, circular: true, beforeColor: "white",//指示點(diǎn)顏色 afterColor: "coral",//當(dāng)前選中的指示點(diǎn)顏色 }, //輪播圖的切換事件 swiperChange: function (e) { //只要把切換后當(dāng)前的index傳給<swiper>組件的current屬性即可 this.setData({ swiperCurrent: e.detail.current }) }, dotsChange: function (e) { //只要把切換后當(dāng)前的index傳給<swiper>組件的current屬性即可 this.setData({ dotsCurrent: e.detail.current }) }, //點(diǎn)擊指示點(diǎn)切換 chuangEvent: function (e) { this.setData({ swiperCurrent: e.currentTarget.id }) }, chuangEvents: function (e) { this.setData({ dotsCurrent: e.currentTarget.id }) }, })
效果圖:
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- 微信小程序使用swiper組件實(shí)現(xiàn)層疊輪播圖
- 微信小程序視圖容器(swiper)組件創(chuàng)建輪播圖
- 微信小程序使用swiper組件實(shí)現(xiàn)類(lèi)3D輪播圖
- 微信小程序之swiper輪播圖中的圖片自適應(yīng)高度的方法
- 微信小程序圖片輪播組件gallery slider使用方法詳解
- 微信小程序?qū)崿F(xiàn)下拉刷新和輪播圖效果
- 微信小程序 swiper組件構(gòu)建輪播圖的實(shí)例
- 微信小程序?qū)崿F(xiàn)輪播圖效果
- 微信小程序聯(lián)網(wǎng)請(qǐng)求的輪播圖
- 微信小程序?qū)崙?zhàn)之輪播圖(3)
- 微信小程序?qū)崿F(xiàn)圖片輪播及文件上傳
- 微信小程序 輪播圖swiper詳解及實(shí)例(源碼下載)
- 微信小程序 swiper組件輪播圖詳解及實(shí)例
相關(guān)文章
JavaScript中call、apply、bind實(shí)現(xiàn)原理詳解
其實(shí)在很多文章都會(huì)寫(xiě)call,apply,bind,但個(gè)人覺(jué)著如果不弄懂原理,是很難理解透的,所以這篇文章主要介紹了JavaScript中call、apply、bind實(shí)現(xiàn)原理的相關(guān)資料,需要的朋友可以參考下2021-06-06Javascript中函數(shù)名.length屬性用法分析(對(duì)比arguments.length)
這篇文章主要介紹了Javascript中函數(shù)名.length屬性用法,結(jié)合實(shí)例形式簡(jiǎn)單對(duì)比分析了與arguments.length屬性的用法區(qū)別,需要的朋友可以參考下2016-09-09異步動(dòng)態(tài)加載JS并運(yùn)行(示例代碼)
這篇文章主要是對(duì)異步動(dòng)態(tài)加載JS并運(yùn)行的示例代碼進(jìn)行了介紹。需要的朋友可以過(guò)來(lái)參考下,希望對(duì)大家有所幫助2013-12-12firefox和IE系列的相關(guān)區(qū)別整理 以備后用
firefox和IE系列的相關(guān)區(qū)別整理,整理相對(duì)來(lái)說(shuō)還可以,但對(duì)于個(gè)別細(xì)節(jié)的處理不夠完善。具體的可以參考腳本*之家以前發(fā)布的文章。2009-12-12JavaScript實(shí)現(xiàn)的背景自動(dòng)變色代碼
這篇文章主要介紹了JavaScript實(shí)現(xiàn)的背景自動(dòng)變色代碼,涉及JavaScript數(shù)組操作結(jié)合定時(shí)函數(shù)實(shí)現(xiàn)修改頁(yè)面元素樣式的相關(guān)技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2015-10-10