頁面代碼
<swiper
class="container"
indicator-dots="{{indicatordots}}"
autoplay="{{autoplay}}"
interval="{{interval}}"
duration="{{duration}}"
bindchange='onSlideChange'
>
<block wx:for="{{imgList}}" wx:key="index">
<swiper-item class="vol-swiper-item">
<view class="vol-card">
<image class="vol-picture" src="{{item}}" mode="aspectFill"></image>
</view>
</swiper-item>
</block>
</swiper>
js代碼
data: {
hidden: false,
imgList: [],
autoplay: false,
indicatordots: false,
duration: 500
},
onLoad: function () {
var that = this;
var videoUrl = "請求的接口地址";
Api.http(videoUrl, (res) => {
that.setData({
hidden: true,
imgList: res,
})
})
},
onSlideChange: function (event) {
var postId = event.detail.current;
console.log(postId);
},
樣式:
.container {
height: 100vh;
padding-top: 0px;
}
.vol-swiper-item {
box-sizing: border-box;
}
.vol-card {
/*parent layout and this inner padding*/
padding: 20rpx;
height: 965rpx;
background: #fff;
}
.vol-swiper {
height: 100%;
}
.vol-picture {
width: 100%;
}
其中:
indicator-dots:控制底下顯示的圓點。
autoplay:控制自動播放。
interval:如果開啟自動播放,控制切換時間間隔。
duration:滑動動畫時長。
bindchange:current 改變時會觸發 change 事件,event.detail = {current: current, source: source}
詳細參考:https://developers.weixin.qq.com/miniprogram/dev/component/swiper.html