怎么在微信小程序中實(shí)現(xiàn)帶縮略圖輪播效果?相信很多沒有經(jīng)驗(yàn)的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
創(chuàng)新互聯(lián)公司是一家專業(yè)提供匯川企業(yè)網(wǎng)站建設(shè),專注與成都做網(wǎng)站、成都網(wǎng)站設(shè)計(jì)、H5技術(shù)、小程序制作等業(yè)務(wù)。10年已為匯川眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)的建站公司優(yōu)惠進(jìn)行中。
wxml:
{{item.index+1}}
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傳給組件的current屬性即可 this.setData({ swiperCurrent: e.detail.current }) }, dotsChange: function (e) { //只要把切換后當(dāng)前的index傳給 組件的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 }) }, })
看完上述內(nèi)容,你們掌握怎么在微信小程序中實(shí)現(xiàn)帶縮略圖輪播效果的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!