在微信小程序中如何使用swiper组件
程序员文章站
2022-04-25 19:53:15
...
这篇文章主要介绍了微信小程序swiper组件用法,结合实例形式分析了微信小程序中swiper组件的功能、使用方法,并附带完整源码供读者下载参考,需要的朋友可以参考下
本文实例讲述了微信小程序swiper组件用法。分享给大家供大家参考,具体如下:
关于视图容器swiper的详细内容可参考官方文档
先来看看运行效果:
index.js:
Page({ data: { imgUrls: ['http://img02.tooopen.com/images/20150928/tooopen_sy_143912755726.jpg', 'http://img06.tooopen.com/images/20160818/tooopen_sy_175866434296.jpg', 'http://img06.tooopen.com/images/20160818/tooopen_sy_175833047715.jpg' ], indicatorDots: false, autoplay: false, interval: 5000, duration: 1000 }, changeIndicatorDots: function (e) { this.setData({ indicatorDots: !this.data.indicatorDots }) }, changeAutoplay: function (e) { this.setData({ autoplay: !this.data.autoplay }) }, intervalChange: function (e) { this.setData({ interval: e.detail.value }) }, durationChange: function (e) { this.setData({ duration: e.detail.value }) } })
index.wxml:
<swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}"> <block wx:for="{{imgUrls}}" wx:key="{{index}}"> <swiper-item> <image src="{{item}}" class="slide-image" width="355" height="150" ></image> <text class="textindex">{{index}}</text> </swiper-item> </block> </swiper> <button bindtap="changeIndicatorDots"> indicator-dots ({{indicatorDots}})</button> <button bindtap="changeAutoplay"> autoplay ({{autoplay}})</button> <slider bindchange="intervalChange" show-value min="2000" max="5000"/> interval <slider bindchange="durationChange" show-value min="1000" max="2000"/> duration
index.wxss:
.slide-image{ display: inline; } .textindex{ position: absolute; top :20px; color: red; }
上面是我整理给大家的,希望今后会对大家有帮助。
相关文章:
以上就是在微信小程序中如何使用swiper组件的详细内容,更多请关注其它相关文章!
上一篇: GridView 导入Excel
下一篇: canvas画布
推荐阅读
-
微信小程序如何修改本地缓存key中单个数据的详解
-
在微信小程序中使用图表的方法示例
-
微信小程序使用swiper组件实现类3D轮播图
-
微信小程序中为什么使用var that=this
-
使用wxapp-img-loader自定义组件实现微信小程序图片预加载功能
-
微信小程序使用swiper组件实现层叠轮播图
-
微信小程序如何像vue一样在动态绑定类名
-
微信小程序新增的拖动组件movable-view使用教程
-
微信小程序授权 获取用户的openid和session_key【后端使用java语言编写】,我写的是get方式,目的是测试能否获取到微信服务器中的数据,后期我会写上post请求方式。
-
详解微信小程序中组件通讯