we-cropper.wxml 369 B

1234567891011
  1. <template name="we-cropper">
  2. <canvas
  3. class="cropper"
  4. disable-scroll="true"
  5. bindtouchstart="touchStart"
  6. bindtouchmove="touchMove"
  7. bindtouchend="touchEnd"
  8. style="width:{{width}}px;height:{{height}}px;background-color: rgba(0, 0, 0, 0.8)"
  9. canvas-id="{{id}}">
  10. </canvas>
  11. </template>