clip.wxml 676 B

12345678910111213
  1. <!--pages/clip/clip.wxml-->
  2. <view class="clip">
  3. <image class="head-img" style="width:{{cropperW}}rpx;height:{{cropperH}}rpx" src="{{imageUrl}}"></image>
  4. <movable-area scale-area style="width:{{cropperW}}rpx;height:{{cropperH}}rpx">
  5. <movable-view bindchange="move" bindscale="scale" direction="all" scale scale-min="0.5" scale-max="1.8">
  6. </movable-view>
  7. </movable-area>
  8. <view class="btn">
  9. <text bindtap="cancel">取消</text>
  10. <text bindtap="getImageInfo">保存</text>
  11. </view>
  12. </view>
  13. <canvas canvas-id="myCanvas" style="position:absolute; width:100%;height:100%;border: 1px solid red;left: -9999px; top: -9999px;"></canvas>