⼩程序实现Swiper轮播图效果本⽂实例为⼤家分享了⼩程序轮播图的具体代码,供⼤家参考,具体内容如下
1.逻辑层
mine.js
// pages/mine/mine.js
Page({
/**
* 页⾯的初始数据
*/
data: {
/*轮播图配置*/
imgUrls: [
'pen/images/20150928/tooopen_sy_143912755726.jpg',
'pen/images/20160818/tooopen_sy_175866434296.jpg',
'pen/images/20160818/tooopen_sy_175833047715.jpg'
],
indicatorDots: true, // 是否显⽰⾯板指⽰点
autoplay: true, // 是否⾃动切换
interval: 5000, // ⾃动切换时间间隔
duration: 500, // 滑动动画时长
circular: true, // 是否采⽤衔接滑动
/*⾃定义轮播图配置*/
slider: [
{ id: '0', linkUrl: 'pages/index/index', picUrl: 'pen/images/20150928/tooopen_sy_143912755726.jpg' }, { id: '0', linkUrl: 'pages/index/index', picUrl: 'pen/images/20160818/tooopen_sy_175866434296.jpg' }, { id: '0', linkUrl: 'pages/index/index', picUrl: 'pen/images/20160818/tooopen_sy_175833047715.jpg' } ],
swiperCurrent: 0
},
/**
* ⽣命周期函数--监听页⾯加载
*/
onLoad: function (options) {
},
//轮播图的切换事件
swiperChange: function (e) {
//只要把切换后当前的index传给<swiper>组件的current属性即可
this.setData({
swiperCurrent: e.detail.current
})
},
//点击指⽰点切换
chuangEvent: function (e) {
this.setData({
swiperCurrent: e.currentTarget.id
})
}
})
2.页⾯布局
mine.wxml
<!--pages/mine/mine.wxml-->
<view>
<!-- 轮播图 -->
<swiper class="swiper" indicator-dots="{{indicatorDots}}"
autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}" circular="{{circular}}">
<block wx:for="{{imgUrls}}" wx:key="id">
<swiper-item>
<image src="{{item}}" class="slide-image" />
</swiper-item>
</block>
</swiper>
<!-- ⾃定义轮播图 -->
<view class="swiper-container">js实现轮播图最简代码
<swiper circular="true" 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>
3.样式
mine.wxss
/* pages/mine/mine.wxss */
/**轮播图 start**/
.swiper {
height: 400rpx;
width: 100%;
}
.swiper image {
height: 100%;
width: 100%;
}
/**轮播图 end**/
/
**⾃定义轮播图 start**/
.swiper-container{
position: relative;
}
.swiper-container .swiper{
height: 400rpx;
}
.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;
}
/**⾃定义轮播图 end**/
4.效果图
5.参数
更多关于轮播图效果的专题,请点击下⽅链接查看学习
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。