wx:for动态读取一个列表,绑定touchstart、touchmove、touchend事件,代码如下
<block wx:for="{{arrayList}}">
<view catchtouchstart="touchstart" catchtouchmove="touchmove" catchtouchend="touchmove">{{username}}</view>
</block>
现在不管滑动哪一项都是所有列表一块儿动,要怎么判断当前项让其滑动?
回答
小泽回答
每个item都加入一个style="left:{{arrayList.left}}",然后滑动的时候动态改变left(当前项实际数值,其他项0)
(0)