国产99久久精品_欧美日本韩国一区二区_激情小说综合网_欧美一级二级视频_午夜av电影_日本久久精品视频

最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

微信小程序使用swiper組件實(shí)現(xiàn)層疊輪播圖

來源:懂視網(wǎng) 責(zé)編:小OO 時(shí)間:2020-11-27 22:05:33
文檔

微信小程序使用swiper組件實(shí)現(xiàn)層疊輪播圖

本文實(shí)例為大家分享了微信小程序?qū)崿F(xiàn)層疊輪播圖的具體代碼,供大家參考,具體內(nèi)容如下:wxml。<;view class="banner-swiper">;<;<;block wx:for="{{arr}}" wx:key="key">;<;swiper-item>;<;image src="{{item.images}}" class="slide-image{{index == swiperCurrent ?;' active' : ''}}" bindchange="chuangEvent" id="{{index}}">;<;/image>;<;/swiper-item>;<;/block>;<。
推薦度:
導(dǎo)讀本文實(shí)例為大家分享了微信小程序?qū)崿F(xiàn)層疊輪播圖的具體代碼,供大家參考,具體內(nèi)容如下:wxml。<;view class="banner-swiper">;<;<;block wx:for="{{arr}}" wx:key="key">;<;swiper-item>;<;image src="{{item.images}}" class="slide-image{{index == swiperCurrent ?;' active' : ''}}" bindchange="chuangEvent" id="{{index}}">;<;/image>;<;/swiper-item>;<;/block>;<。

本文實(shí)例為大家分享了微信小程序?qū)崿F(xiàn)層疊輪播圖的具體代碼,供大家參考,具體內(nèi)容如下

wxml:

<view class="banner-swiper">
 <swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" current='{{swiperCurrent}}' 
indicator-color="{{beforeColor}}" indicator-active-color="{{afterColor}}" circular='{{circular}}' 
previous-margin="{{previousmargin}}" next-margin="{{nextmargin}}" bindchange="swiperChange" >
 <block wx:for="{{arr}}" wx:key="key"> 
 <swiper-item>
 <image src="{{item.images}}" class="slide-image{{index == swiperCurrent ? ' active' : ''}}" 
bindchange="chuangEvent" id="{{index}}"></image>
 </swiper-item>
 </block> 
 </swiper>
 </view> 

wxss:

.banner-swiper {
 width: 100%;
 height: 500rpx;
 overflow: hidden;
}

swiper {
 display: block;
 height: 500rpx;
 position: relative;
}

.slide-image {
 width: 96%;
 display: block;
 margin: 0 auto;
 height: 450rpx;
 margin-top:25rpx;
}
.active{
 margin-top:0rpx;
 height: 500rpx;
}

js:

Page({
 data: {
 //輪播圖
 swiperCurrent:1,
 arr: [{
 images: 'images/1.jpg'
 },
 {
 images: 'images/5.jpg'
 },
 {
 images: 'images/3.jpg'
 },
 {
 images: 'images/4.jpg'
 }
 ]
 indicatorDots: true,
 autoplay: true,
 interval: 2000,
 duration: 1000,
 circular: true,
 beforeColor: "white",//指示點(diǎn)顏色 
 afterColor: "coral",//當(dāng)前選中的指示點(diǎn)顏色 
 previousmargin:'30px',//前邊距
 nextmargin:'30px',//后邊距
 
 },
 
 //輪播圖的切換事件 
 swiperChange: function (e) {
 console.log(e.detail.current);
 this.setData({
 swiperCurrent: e.detail.current //獲取當(dāng)前輪播圖片的下標(biāo)
 })
 },
 //滑動(dòng)圖片切換 
 chuangEvent: function (e) { 
 this.setData({
 swiperCurrent: e.currentTarget.id
 })
 },
})


效果圖:

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

微信小程序使用swiper組件實(shí)現(xiàn)層疊輪播圖

本文實(shí)例為大家分享了微信小程序?qū)崿F(xiàn)層疊輪播圖的具體代碼,供大家參考,具體內(nèi)容如下:wxml。<;view class="banner-swiper">;<;<;block wx:for="{{arr}}" wx:key="key">;<;swiper-item>;<;image src="{{item.images}}" class="slide-image{{index == swiperCurrent ?;' active' : ''}}" bindchange="chuangEvent" id="{{index}}">;<;/image>;<;/swiper-item>;<;/block>;<。
推薦度:
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top
主站蜘蛛池模板: 真实的国产乱xxxx在线 | 久久99精品一久久久久久 | 亚洲国产福利 | 美女视频黄a视频全免费应用 | 欧美国产日韩在线 | 国产精品久久久久国产精品 | 欧美成性色| 国产亚洲人成a在线v网站 | 黄毛片免费| 欧美日韩免费一区二区在线观看 | 日韩在线欧美 | 欧美日本在线视频 | 久久99九九精品免费 | 国产精品久久久久久久久久免费 | 亚洲一级毛片 | 欧日韩一区二区三区 | 日韩精品在线免费观看 | 国产成人久久精品亚洲小说 | 亚洲欧美日韩国产综合 | 亚洲精品免费在线观看 | 亚洲va欧美 | 在线欧美a | 日韩国产免费 | 免费观看a黄一级视频 | 广东东莞一级毛片免费 | 日韩在线一区二区三区免费视频 | 欧美日韩国产专区 | 美女一丝不佳一级毛片大屁股 | 国产99在线播放 | 欧美在线一二三区 | 国产精品久久久久久久y | 国产成人久久精品激情 | 欧美日韩国产高清 | 热re91久久精品国产91热 | 日韩欧美一区二区三区不卡在线 | 91视频一区二区三区 | 国产精品一区二区久久精品 | 精品免费久久久久国产一区 | 97精品国产福利一区二区三区 | 欧美一区二区三区视视频 | 亚洲欧美另类第一页 |