這篇文章主要介紹“微信小程序中怎么實(shí)現(xiàn)輪播圖”,在日常操作中,相信很多人在微信小程序中怎么實(shí)現(xiàn)輪播圖問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對(duì)大家解答”微信小程序中怎么實(shí)現(xiàn)輪播圖”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!
創(chuàng)新互聯(lián)公司于2013年成立,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元太白做網(wǎng)站,已為上家服務(wù),為太白各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:13518219792業(yè)務(wù)需求:
5個(gè)圖片輪番播放,可以左右滑動(dòng),點(diǎn)擊指示點(diǎn)可以切換圖片
重點(diǎn)說明:
由于微信小程序,整個(gè)項(xiàng)目編譯后的大小不能超過1M
查看做輪播圖功能的一張圖片大小都已經(jīng)有100+k了
那么我們可以把圖片放在服務(wù)器上,發(fā)送請(qǐng)求來獲取。
index.wxml:
這里使用小程序提供的
autoplay:自動(dòng)播放
interval:自動(dòng)切換時(shí)間
duration:滑動(dòng)動(dòng)畫的時(shí)長
current:當(dāng)前所在的頁面
bindchange:current 改變時(shí)會(huì)觸發(fā) change 事件
由于
{{index+1}}
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傳給組件的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)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!