You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.3 KiB
36 lines
1.3 KiB
<view class="m-cropper"
|
|
style="height:{{ height }}rpx; width:{{ width }}rpx"
|
|
catchtouchmove="handelTouchmoveCropper"
|
|
catchtouchend="handelTouchendCropper"
|
|
catchtouchcancel="handelTouchendCropper"
|
|
catchtouchstart="handelTouchstartCropper">
|
|
<image
|
|
src="{{ avatar.tempFilePath }}"
|
|
style="{{ !singleTouchData.isActived && !doubleTouchData.isActived ? 'opacity: 0.4;' : '' }} {{ imgStyle }}" />
|
|
<view class="img-wrap">
|
|
<image src="{{ avatar.tempFilePath }}"
|
|
style="{{ imgStyle }}" />
|
|
</view>
|
|
|
|
<view wx:if="{{showCircle}}" class="img-wrap img-wrap-circle"></view>
|
|
<view class="img-wrap-corner z-1"></view>
|
|
<view class="img-wrap-corner z-2"></view>
|
|
<view class="img-wrap-corner z-3"></view>
|
|
<view class="img-wrap-corner z-4"></view>
|
|
</view>
|
|
|
|
<canvas type="2d" id="myCanvas"
|
|
style="height:{{ height }}rpx; width:{{ width }}rpx"
|
|
/>
|
|
<canvas type="2d" id="rotateCanvas"
|
|
style="height:{{ avatar.srcWidth / dpr }}px; width:{{ avatar.srcHeight / dpr }}px"
|
|
/>
|
|
|
|
|
|
<view class="m-operate" report-submit="true">
|
|
<view class="btn-ico" bind:tap="rotateImg">
|
|
<image src="/assets/images/common/rotate.png" mode="aspectFit"></image>
|
|
</view>
|
|
<view class="btn" bind:tap="handleTapReselectBtn">选择图片</view>
|
|
<view bind:tap="submit" class="btn">保存</view>
|
|
</view>
|