微信小程序滑块视图容器swiper,微信小程序swiper实例
本文摘要
swiper 滑块视图容器。 属性名 类型 默认值 说明 最低版本 indicator-dots Boole
swiper
滑块视图容器。
| 属性名 | 类型 | 默认值 | 说明 | 最低版本 |
|---|---|---|---|---|
| indicator-dots | Boolean | false | 是否显示面板指示点 | |
| indicator-color | Color | rgba(0, 0, 0, .3) | 指示点颜色 | 1.1.0 |
| indicator-active-color | Color | #000000 | 当前选中的指示点颜色 | 1.1.0 |
| autoplay | Boolean | false | 是否自动切换 | |
| current | Number | 0 | 当前所在页面的 index | |
| interval | Number | 5000 | 自动切换时间间隔 | |
| duration | Number | 500 | 滑动动画时长 | |
| circular | Boolean | false | 是否采用衔接滑动 | |
| vertical | Boolean | false | 滑动方向是否为纵向 | |
| bindchange | EventHandle | current 改变时会触发 change 事件,event.detail = {current: current, source: source} |
从公共库v1.4.0开始,change事件返回detail中包含一个source字段,表示导致变更的原因,可能值如下:
-
autoplay自动播放导致swiper变化; -
touch用户划动引起swiper变化; - 其他原因将用空字符串表示。
注意
:其中只可放置组件,否则会导致未定义的行为。
swiper-item
仅可放置在组件中,宽高自动设置为100%。
示例代码:
swiper indicator-dots="{{indicatorDots}}"
autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
block wx:for="{{Urls}}">
swiper-item>
image src="{{item}}" class="slide-image" width="355" height="150"/>
swiper-item>
block>
swiper>
button bindtap="changeIndicatorDots"> indicator-dots button>
button bindtap="changeAutoplay"> autoplay button>
slider bindchange="intervalChange" show-value min="500" max="2000"/> interval
slider bindchange="durationChange" show-value min="1000" max="10000"/> duration
Page({
data: {
Urls: [
'http://02.tooopen.com/images/20150928/tooopen_sy_143912755726.jpg',
'http://06.tooopen.com/images/20160818/tooopen_sy_175866434296.jpg',
'http://06.tooopen.com/images/20160818/tooopen_sy_175833047715.jpg'
],
indicatorDots: false,
autoplay: false,
interval: 5000,
duration: 1000
},
changeIndicatorDots: function(e) {
tShopfas.setData({
indicatorDots: !tShopfas.data.indicatorDots
})
},
changeAutoplay: function(e) {
tShopfas.setData({
autoplay: !tShopfas.data.autoplay
})
},
intervalChange: function(e) {
tShopfas.setData({
interval: e.detail.value
})
},
durationChange: function(e) {
tShopfas.setData({
duration: e.detail.value
})
}
})
更多微信小程序开发教程,可以关注Shopfa小程序。
第二部分:如何开通一个小商店
相关文章
****更多行业产品开发方案,请关注 加速度JSUDO***
<以上资讯仅供参考,如果您需解决具体问题,建议您关注作者;如果有软件产品开发需求,可在线咨询加速度产品经理获取方案和报价>
加速度JSUDO是一家企业级数字化解决方案提供商,专注于软件开发、网络营销、数字化转型咨询及云计算服务。核心业务包括定制化ERP/CRM系统、快速应用开发、大数据分析及物联网(IoT)解决方案,助力企业提升效率与智能化水平。服务覆盖制造业、零售、物流等多行业,致力于通过技术创新推动客户数字化转型。
添加客服微信获取更多内容










