cropper.wxml 1.0 KB

123456789101112
  1. <!-- pages/piano/cropper/cropper.wxml -->
  2. <view class="container">
  3. <image-cropper id="image-cropper" bindload="cropperload" bindimageload="loadimage" bindtapcut="clickcut" limit_move="{{limit_move}}" disable_rotate="{{disable_rotate}}" width="{{width}}" height="{{height}}" imgSrc="{{src}}" angle="{{angle}}" disable_width="{{disable_width}}" max_width="{{max_width}}" max_height="{{max_height}}" disable_height="{{disable_height}}" disable_ratio="{{disable_ratio}}"></image-cropper>
  4. <view wx:if="{{showProgress}}" class="progress-container">
  5. <progress class="progress" border-radius="26rpx" stroke-width="52rpx" percent="{{progress}}" activeColor="#6546A3" backgroundColor="rgba(0,0,0,0.4)" stroke-width="26" border-radius="13" />
  6. <view class="progress-text">保存壁纸中…{{progress}}%</view>
  7. </view>
  8. <view wx:if="{{!showProgress}}" class='bottom'>
  9. <view class="left_btn btn_title" catchtap='cancel'>取消</view>
  10. <view class="right_btn btn_title" bindtap='submit'>确定</view>
  11. </view>
  12. </view>