赞
踩
这是wxml, bindchange是实时绑定轮播改变事件
<swiper class='sw-tu' circular="true" current="0" bindchange='onSlideChangeEnd'>
<swiper-item class="sw-tuone" wx:for="{{list.img2}}">
<image class='sw-photo' src="{{item}}" />
</swiper-item>
</swiper>
这是js, e.detail.current 是图下标,从零开始!
onSlideChangeEnd: function (e) {
var that = this;
that.setData({
index: e.detail.current + 1
})
},
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。