movable.wxml 720 B

12345678
  1. <!--pages/movable/movable.wxml-->
  2. <view class="container page" data-weui-theme="{{theme}}">
  3. <wxs module="test" src="./movable.wxs"></wxs>
  4. <view wx:if="{{show}}" class="area" style='position:relative;width:100%;height:100%;overflow: hidden'>
  5. <view data-index="1" data-obj="{{dataObj}}" bindtouchstart="{{test.touchstart}}" bindtouchmove="{{test.touchmove}}" bindtouchend='{{test.touchmove}}' class="movable" style="position:absolute;width:100px;height:100px;border-radius: 50%;background:url('https://res.wx.qq.com/community/dist/community/images/logo_miniprogram_013191.png');background-size: cover;left:{{left}}px;top:{{top}}px"></view>
  6. </view>
  7. <!-- <view bindtap='{{taptest}}'>testbindtap</view> -->
  8. </view>