index.wxml 532 B

123456789101112131415
  1. <canvas type="2d" id="canvas" disable-scroll bindtouchmove="move" bindtouchend="end" bindtouchstart="start"></canvas>
  2. <view class="tool">
  3. <block wx:for="{{list}}" wx:key="item">
  4. <image src="{{item.url}}" mode="aspectFit" data-item="{{item}}" bind:tap="onChange" />
  5. </block>
  6. </view>
  7. <view class="btns">
  8. <view>
  9. 旋转角度: <input type="number" model:value="{{angle}}" />
  10. </view>
  11. <button bind:tap="back">撤销</button>
  12. <button bind:tap="clear">清空</button>
  13. <button bind:tap="save">保存</button>
  14. </view>