首页 > 微信应用  > 

微信小程序之拖拽排序的示例代码

微信小程序之拖拽排序的示例代码
本篇文章主要分享了微信小程序拖拽排序的示例代码。具有一定的参考价值,下面跟着小编一起来看下吧

本篇文章主要分享了微信小程序拖拽排序的示例代码。具有一定的参考价值,下面跟着小编一起来看下吧

index.wxml

<!--index.wxml--><view class="container"> <view bindtap="box" class="box" > <view disable-scroll="true" wx:for="{{content}}" bindtouchmove="move" bindtouchstart="movestart" bindtouchend="moveend" data-index="{{item.id}}" data-main="{{mainx}}" class="main {{mainx == item.id? &#39;mainmove&#39;:&#39;mainend&#39;}}" style="left:{{start.x}}px; top:{{start.y}}px">{{item.content}}</view> </view></view>

微信小程序之拖拽排序的示例代码由讯客互联微信应用栏目发布,感谢您对讯客互联的认可,以及对我们原创作品以及文章的青睐,非常欢迎各位朋友分享到个人网站或者朋友圈,但转载请说明文章出处“微信小程序之拖拽排序的示例代码