您好,登錄后才能下訂單哦!
這篇文章主要介紹“微信小程序中怎么實(shí)現(xiàn)輪播圖”,在日常操作中,相信很多人在微信小程序中怎么實(shí)現(xiàn)輪播圖問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”微信小程序中怎么實(shí)現(xiàn)輪播圖”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
業(yè)務(wù)需求:
5個圖片輪番播放,可以左右滑動,點(diǎn)擊指示點(diǎn)可以切換圖片
重點(diǎn)說明:
由于微信小程序,整個項(xiàng)目編譯后的大小不能超過1M
查看做輪播圖功能的一張圖片大小都已經(jīng)有100+k了
那么我們可以把圖片放在服務(wù)器上,發(fā)送請求來獲取。
index.wxml:
這里使用小程序提供的<swiper>組件
autoplay:自動播放
interval:自動切換時間
duration:滑動動畫的時長
current:當(dāng)前所在的頁面
bindchange:current 改變時會觸發(fā) change 事件
由于<swiper>組件提供的指示點(diǎn)樣式比較單一,另外再自定義指示點(diǎn)的樣式
<view class="recommend" > <view class="swiper-container"> <swiper autoplay="auto" interval="5000" duration="500" current="{{swiperCurrent}}" bindchange="swiperChange" class="swiper"> <block wx:for="{{slider}}" wx:key="unique"> <swiper-item data-id="{{item.id}}" data-url="{{item.linkUrl}}"> <image src="{{item.picUrl}}" class="img"></image> </swiper-item> </block> </swiper> <view class="dots"> <block wx:for="{{slider}}" wx:key="unique"> <view class="dot{{index == swiperCurrent ? ' active' : ''}}" bindtap="chuangEvent" id="{{index}}">{{index+1}}</view> </block> </view> </view> </view>
index.wxss:
.swiper-container{ position: relative; } .swiper-container .swiper{ height: 300rpx; } .swiper-container .swiper .img{ width: 100%; height: 100%; } .swiper-container .dots{ position: absolute; right: 40rpx; bottom: 20rpx; display: flex; justify-content: center; } .swiper-container .dots .dot{ margin: 0 10rpx; width: 28rpx; height: 28rpx; background: #fff; border-radius: 50%; transition: all .6s; font: 300 18rpx/28rpx "microsoft yahei"; text-align: center; } .swiper-container .dots .dot.active{ background: #f80; color:#fff; }
index.js:
//導(dǎo)入js var util = require('../../utils/util.js') Page({ data: { slider: [], swiperCurrent: 0 }, onLoad: function () { var that = this; //網(wǎng)絡(luò)訪問,獲取輪播圖的圖片 util.getRecommend(function(data){ that.setData({ slider: data.data.slider }) }); }, //輪播圖的切換事件 swiperChange: function(e){ //只要把切換后當(dāng)前的index傳給<swiper>組件的current屬性即可 this.setData({ swiperCurrent: e.detail.current }) }, //點(diǎn)擊指示點(diǎn)切換 chuangEvent: function(e){ this.setData({ swiperCurrent: e.currentTarget.id }) } })
utils.js:
//網(wǎng)絡(luò)訪問 function getRecommend(callback) { wx.request({ url: 'https://c.y.qq.com/musichall/fcgi-bin/fcg_yqqhomepagerecommend.fcg', data: { g_tk: 5381, uin: 0, format: 'json', inCharset: 'utf-8', outCharset: 'utf-8', notice: 0, platform: 'h6', needNewCode: 1, _: Date.now() }, method: 'GET', header: {'content-Type': 'application/json'}, success: function(res){ if(res.statusCode == 200){ callback(res.data); } } }) } module.exports = { getRecommend: getRecommend }
運(yùn)行:
到此,關(guān)于“微信小程序中怎么實(shí)現(xiàn)輪播圖”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!
免責(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)容。