| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686 | 
							- <template>
 
-   <view class="avatar-container">
 
-     <u-navbar :titleStyle="{ color: '#fff' }" :autoBack="true" title="修改头像" :placeholder="true" :safeAreaInsetTop="true" :bgColor="proxy.$settingStore.themeColor.color">
 
-       <template #left>
 
-         <view class="u-nav-slot">
 
-           <u-icon name="arrow-left" size="19" color="#fff"></u-icon>
 
-         </view>
 
-       </template>
 
-     </u-navbar>
 
-     <view class="uni-content-header"></view>
 
-     <view class="page-body uni-content-info">
 
-       <view class="cropper-content">
 
-         <view ref="uniCorpper" v-if="isShowImg" class="uni-corpper" :style="'width:' + cropperInitW + 'px;height:' + cropperInitH + 'px;background:#000'">
 
-           <view class="uni-corpper-content" :style="'width:' + cropperW + 'px;height:' + cropperH + 'px;left:' + cropperL + 'px;top:' + cropperT + 'px'">
 
-             <image :src="imageSrc" :style="'width:' + cropperW + 'px;height:' + cropperH + 'px'"></image>
 
-             <view
 
-               class="uni-corpper-crop-box"
 
-               @touchstart.stop="contentStartMove"
 
-               @touchmove.stop="contentMoveing"
 
-               @touchend.stop="contentTouchEnd"
 
-               :style="'left:' + cutL + 'px;top:' + cutT + 'px;right:' + cutR + 'px;bottom:' + cutB + 'px'"
 
-             >
 
-               <view class="uni-cropper-view-box">
 
-                 <view class="uni-cropper-dashed-h"></view>
 
-                 <view class="uni-cropper-dashed-v"></view>
 
-                 <view class="uni-cropper-line-t" data-drag="top" @touchstart.stop="dragStart" @touchmove.stop="dragMove"></view>
 
-                 <view class="uni-cropper-line-r" data-drag="right" @touchstart.stop="dragStart" @touchmove.stop="dragMove"></view>
 
-                 <view class="uni-cropper-line-b" data-drag="bottom" @touchstart.stop="dragStart" @touchmove.stop="dragMove"></view>
 
-                 <view class="uni-cropper-line-l" data-drag="left" @touchstart.stop="dragStart" @touchmove.stop="dragMove"></view>
 
-                 <view class="uni-cropper-point point-t" data-drag="top" @touchstart.stop="dragStart" @touchmove.stop="dragMove"></view>
 
-                 <view class="uni-cropper-point point-tr" data-drag="topTight"></view>
 
-                 <view class="uni-cropper-point point-r" data-drag="right" @touchstart.stop="dragStart" @touchmove.stop="dragMove"></view>
 
-                 <view class="uni-cropper-point point-rb" data-drag="rightBottom" @touchstart.stop="dragStart" @touchmove.stop="dragMove"></view>
 
-                 <!-- @touchend.stop="dragEnd" -->
 
-                 <view class="uni-cropper-point point-b" data-drag="bottom" @touchstart.stop="dragStart" @touchmove.stop="dragMove"></view>
 
-                 <view class="uni-cropper-point point-bl" data-drag="bottomLeft"></view>
 
-                 <view class="uni-cropper-point point-l" data-drag="left" @touchstart.stop="dragStart" @touchmove.stop="dragMove"></view>
 
-                 <view class="uni-cropper-point point-lt" data-drag="leftTop"></view>
 
-               </view>
 
-             </view>
 
-           </view>
 
-         </view>
 
-       </view>
 
-       <view class="padding-sm">
 
-         <button type="default" class="margin-top-sm round text-dfl" @click="getImage" style="border: 1px rgb(0, 0, 0, 0.1) solid">选择头像</button>
 
-         <button type="primary" class="margin-top-sm round text-dfl" @click="getImageInfo">提交</button>
 
-       </view>
 
-       <canvas canvas-id="myCanvas" :style="'position:absolute;border: 1px solid red; width:' + imageW + 'px;height:' + imageH + 'px;top:-9999px;left:-9999px;'"></canvas>
 
-     </view>
 
-   </view>
 
- </template>
 
- <script setup>
 
- import config from "@/config";
 
- import { ref, reactive, computed, getCurrentInstance, toRefs, inject } from "vue";
 
- import { onReady, onShow } from "@dcloudio/uni-app";
 
- import { uploadAvatar, updateUserProfile } from "@/api/system/user";
 
- import useStores from "@/store/modules/user.js";
 
- const useStore = useStores();
 
- const { proxy } = getCurrentInstance();
 
- const baseUrl = config.baseUrl;
 
- let sysInfo = uni.getSystemInfoSync();
 
- let SCREEN_WIDTH = sysInfo.screenWidth;
 
- let PAGE_X, // 手按下的x位置
 
-   PAGE_Y, // 手按下y的位置
 
-   PR = sysInfo.pixelRatio, // dpi
 
-   T_PAGE_X, // 手移动的时候x的位置
 
-   T_PAGE_Y, // 手移动的时候Y的位置
 
-   CUT_L, // 初始化拖拽元素的left值
 
-   CUT_T, // 初始化拖拽元素的top值
 
-   CUT_R, // 初始化拖拽元素的
 
-   CUT_B, // 初始化拖拽元素的
 
-   CUT_W, // 初始化拖拽元素的宽度
 
-   CUT_H, //  初始化拖拽元素的高度
 
-   IMG_RATIO, // 图片比例
 
-   IMG_REAL_W, // 图片实际的宽度
 
-   IMG_REAL_H, // 图片实际的高度
 
-   DRAFG_MOVE_RATIO = 1, //移动时候的比例,
 
-   INIT_DRAG_POSITION = 100, // 初始化屏幕宽度和裁剪区域的宽度之差,用于设置初始化裁剪的宽度
 
-   DRAW_IMAGE_W = sysInfo.screenWidth; // 设置生成的图片宽度
 
- /**
 
-  * 页面的初始数据
 
-  */
 
- const array = reactive({
 
-   imageSrc: useStore.$state.avatar,
 
-   isShowImg: false,
 
-   // 初始化的宽高
 
-   cropperInitW: SCREEN_WIDTH,
 
-   cropperInitH: SCREEN_WIDTH,
 
-   // 动态的宽高
 
-   cropperW: SCREEN_WIDTH,
 
-   cropperH: SCREEN_WIDTH,
 
-   // 动态的left top值
 
-   cropperL: 0,
 
-   cropperT: 0,
 
-   transL: 0,
 
-   transT: 0,
 
-   // 图片缩放值
 
-   scaleP: 0,
 
-   imageW: 0,
 
-   imageH: 0,
 
-   // 裁剪框 宽高
 
-   cutL: 0,
 
-   cutT: 0,
 
-   cutB: SCREEN_WIDTH,
 
-   cutR: "100%",
 
-   qualityWidth: DRAW_IMAGE_W,
 
-   innerAspectRadio: DRAFG_MOVE_RATIO,
 
- });
 
- const {
 
-   imageSrc,
 
-   isShowImg,
 
-   cropperInitW,
 
-   cropperInitH,
 
-   cropperW,
 
-   cropperH,
 
-   cropperL,
 
-   cropperT,
 
-   transL,
 
-   transT,
 
-   scaleP,
 
-   imageW,
 
-   imageH,
 
-   cutL,
 
-   cutT,
 
-   cutB,
 
-   cutR,
 
-   qualityWidth,
 
-   innerAspectRadio,
 
- } = toRefs(array);
 
- /**
 
-  * @更新图片数据
 
-  */
 
- function setData(obj) {
 
-   Object.keys(obj).forEach(function (key) {
 
-     array[key] = obj[key];
 
-   });
 
- }
 
- /**
 
-  * @选择图片
 
-  */
 
- function getImage() {
 
-   uni.chooseImage({
 
-     success: function (res) {
 
-       setData({
 
-         imageSrc: res.tempFilePaths[0],
 
-       });
 
-       loadImage();
 
-     },
 
-   });
 
- }
 
- function loadImage() {
 
-   uni.getImageInfo({
 
-     src: imageSrc.value,
 
-     success: function success(res) {
 
-       IMG_RATIO = 1 / 1;
 
-       if (IMG_RATIO >= 1) {
 
-         IMG_REAL_W = SCREEN_WIDTH;
 
-         IMG_REAL_H = SCREEN_WIDTH / IMG_RATIO;
 
-       } else {
 
-         IMG_REAL_W = SCREEN_WIDTH * IMG_RATIO;
 
-         IMG_REAL_H = SCREEN_WIDTH;
 
-       }
 
-       let minRange = IMG_REAL_W > IMG_REAL_H ? IMG_REAL_W : IMG_REAL_H;
 
-       INIT_DRAG_POSITION = minRange > INIT_DRAG_POSITION ? INIT_DRAG_POSITION : minRange;
 
-       // 根据图片的宽高显示不同的效果   保证图片可以正常显示
 
-       if (IMG_RATIO >= 1) {
 
-         let cutT = Math.ceil((SCREEN_WIDTH / IMG_RATIO - (SCREEN_WIDTH / IMG_RATIO - INIT_DRAG_POSITION)) / 2);
 
-         let cutB = cutT;
 
-         let cutL = Math.ceil((SCREEN_WIDTH - SCREEN_WIDTH + INIT_DRAG_POSITION) / 2);
 
-         let cutR = cutL;
 
-         setData({
 
-           cropperW: SCREEN_WIDTH,
 
-           cropperH: SCREEN_WIDTH / IMG_RATIO,
 
-           // 初始化left right
 
-           cropperL: Math.ceil((SCREEN_WIDTH - SCREEN_WIDTH) / 2),
 
-           cropperT: Math.ceil((SCREEN_WIDTH - SCREEN_WIDTH / IMG_RATIO) / 2),
 
-           cutL: cutL,
 
-           cutT: cutT,
 
-           cutR: cutR,
 
-           cutB: cutB,
 
-           // 图片缩放值
 
-           imageW: IMG_REAL_W,
 
-           imageH: IMG_REAL_H,
 
-           scaleP: IMG_REAL_W / SCREEN_WIDTH,
 
-           qualityWidth: DRAW_IMAGE_W,
 
-           innerAspectRadio: IMG_RATIO,
 
-         });
 
-       } else {
 
-         let cutL = Math.ceil((SCREEN_WIDTH * IMG_RATIO - SCREEN_WIDTH * IMG_RATIO) / 2);
 
-         let cutR = cutL;
 
-         let cutT = Math.ceil((SCREEN_WIDTH - INIT_DRAG_POSITION) / 2);
 
-         let cutB = cutT;
 
-         setData({
 
-           cropperW: SCREEN_WIDTH * IMG_RATIO,
 
-           cropperH: SCREEN_WIDTH,
 
-           // 初始化left right
 
-           cropperL: Math.ceil((SCREEN_WIDTH - SCREEN_WIDTH * IMG_RATIO) / 2),
 
-           cropperT: Math.ceil((SCREEN_WIDTH - SCREEN_WIDTH) / 2),
 
-           cutL: cutL,
 
-           cutT: cutT,
 
-           cutR: cutR,
 
-           cutB: cutB,
 
-           // 图片缩放值
 
-           imageW: IMG_REAL_W,
 
-           imageH: IMG_REAL_H,
 
-           scaleP: IMG_REAL_W / SCREEN_WIDTH,
 
-           qualityWidth: DRAW_IMAGE_W,
 
-           innerAspectRadio: IMG_RATIO,
 
-         });
 
-       }
 
-       setData({
 
-         isShowImg: true,
 
-       });
 
-       uni.hideLoading();
 
-     },
 
-   });
 
- }
 
- /**
 
-  * @拖动时候触发的touchStart事件
 
-  */
 
- function contentStartMove(e) {
 
-   PAGE_X = e.touches[0].pageX;
 
-   PAGE_Y = e.touches[0].pageY;
 
- }
 
- /**
 
-  * @拖动时候触发的touchMove事件
 
-  */
 
- function contentMoveing(e) {
 
-   var _this = this;
 
-   var dragLengthX = (PAGE_X - e.touches[0].pageX) * DRAFG_MOVE_RATIO;
 
-   var dragLengthY = (PAGE_Y - e.touches[0].pageY) * DRAFG_MOVE_RATIO;
 
-   // 左移
 
-   if (dragLengthX > 0) {
 
-     if (cutL.value - dragLengthX < 0) dragLengthX = cutL.value;
 
-   } else {
 
-     if (cutR.value + dragLengthX < 0) dragLengthX = -cutR.value;
 
-   }
 
-   if (dragLengthY > 0) {
 
-     if (cutT.value - dragLengthY < 0) dragLengthY = cutT.value;
 
-   } else {
 
-     if (cutB.value + dragLengthY < 0) dragLengthY = -cutB.value;
 
-   }
 
-   setData({
 
-     cutL: cutL.value - dragLengthX,
 
-     cutT: cutT.value - dragLengthY,
 
-     cutR: cutR.value + dragLengthX,
 
-     cutB: cutB.value + dragLengthY,
 
-   });
 
-   PAGE_X = e.touches[0].pageX;
 
-   PAGE_Y = e.touches[0].pageY;
 
- }
 
- function contentTouchEnd() {}
 
- /**
 
-  * @获取图片
 
-  */
 
- function getImageInfo() {
 
-   uni.showLoading({
 
-     title: "图片生成中...",
 
-   });
 
-   // 将图片写入画布
 
-   const ctx = uni.createCanvasContext("myCanvas");
 
-   ctx.drawImage(imageSrc.value, 0, 0, IMG_REAL_W, IMG_REAL_H);
 
-   ctx.draw(true, () => {
 
-     // 获取画布要裁剪的位置和宽度   均为百分比 * 画布中图片的宽度    保证了在微信小程序中裁剪的图片模糊  位置不对的问题 canvasT = (_this.cutT / _this.cropperH) * (_this.imageH / pixelRatio)
 
-     var canvasW = ((cropperW.value - cutL.value - cutR.value) / cropperW.value) * IMG_REAL_W;
 
-     var canvasH = ((cropperH.value - cutT.value - cutB.value) / cropperH.value) * IMG_REAL_H;
 
-     var canvasL = (cutL.value / cropperW.value) * IMG_REAL_W;
 
-     var canvasT = (cutT.value / cropperH.value) * IMG_REAL_H;
 
-     uni.canvasToTempFilePath({
 
-       x: canvasL,
 
-       y: canvasT,
 
-       width: canvasW,
 
-       height: canvasH,
 
-       destWidth: canvasW,
 
-       destHeight: canvasH,
 
-       quality: 0.5,
 
-       canvasId: "myCanvas",
 
-       success: function (res) {
 
-         uni.hideLoading();
 
-         let data = { name: "file", filePath: res.tempFilePath };
 
-         uploadAvatar(data).then((response) => {
 
-           useStore.$state.avatar = response.data.url;
 
-           updateUserProfile({
 
-             avatar: response.data.url,
 
-           }).then(() => {});
 
-           uni.showToast({ title: "修改成功", icon: "success" });
 
-           uni.navigateBack();
 
-         });
 
-       },
 
-     });
 
-   });
 
- }
 
- /**
 
-  * @设置大小的时候触发的touchStart事件
 
-  */
 
- function dragStart(e) {
 
-   T_PAGE_X = e.touches[0].pageX;
 
-   T_PAGE_Y = e.touches[0].pageY;
 
-   CUT_L = cutL.value;
 
-   CUT_R = cutR.value;
 
-   CUT_B = cutB.value;
 
-   CUT_T = cutT.value;
 
- }
 
- /**
 
-  * @设置大小的时候触发的touchMove事件
 
-  */
 
- function dragMove(e) {
 
-   var dragType = e.target.dataset.drag;
 
-   switch (dragType) {
 
-     case "right":
 
-       var dragLength = (T_PAGE_X - e.touches[0].pageX) * DRAFG_MOVE_RATIO;
 
-       if (CUT_R + dragLength < 0) dragLength = -CUT_R;
 
-       setData({
 
-         cutR: CUT_R + dragLength,
 
-       });
 
-       break;
 
-     case "left":
 
-       var dragLength = (T_PAGE_X - e.touches[0].pageX) * DRAFG_MOVE_RATIO;
 
-       if (CUT_L - dragLength < 0) dragLength = CUT_L;
 
-       if (CUT_L - dragLength > cropperW.value - cutR.value) dragLength = CUT_L - (cropperW.value - cutR.value);
 
-       setData({
 
-         cutL: CUT_L - dragLength,
 
-       });
 
-       break;
 
-     case "top":
 
-       var dragLength = (T_PAGE_Y - e.touches[0].pageY) * DRAFG_MOVE_RATIO;
 
-       if (CUT_T - dragLength < 0) dragLength = CUT_T;
 
-       if (CUT_T - dragLength > cropperH.value - cutB.value) dragLength = CUT_T - (cropperH.value - cutB.value);
 
-       setData({
 
-         cutT: CUT_T - dragLength,
 
-       });
 
-       break;
 
-     case "bottom":
 
-       var dragLength = (T_PAGE_Y - e.touches[0].pageY) * DRAFG_MOVE_RATIO;
 
-       if (CUT_B + dragLength < 0) dragLength = -CUT_B;
 
-       setData({
 
-         cutB: CUT_B + dragLength,
 
-       });
 
-       break;
 
-     case "rightBottom":
 
-       var dragLengthX = (T_PAGE_X - e.touches[0].pageX) * DRAFG_MOVE_RATIO;
 
-       var dragLengthY = (T_PAGE_Y - e.touches[0].pageY) * DRAFG_MOVE_RATIO;
 
-       if (CUT_B + dragLengthY < 0) dragLengthY = -CUT_B;
 
-       if (CUT_R + dragLengthX < 0) dragLengthX = -CUT_R;
 
-       let cutB = CUT_B + dragLengthY;
 
-       let cutR = CUT_R + dragLengthX;
 
-       setData({
 
-         cutB: cutB,
 
-         cutR: cutR,
 
-       });
 
-       break;
 
-     default:
 
-       break;
 
-   }
 
- }
 
- /**
 
-  * 生命周期函数--监听页面初次渲染完成
 
-  */
 
- onReady(() => {
 
-   loadImage();
 
- });
 
- onShow(() => {
 
-   //调用系统主题颜色
 
-   proxy.$settingStore.systemThemeColor([1]);
 
- });
 
- </script>
 
- <style lang="scss">
 
- /* pages/uni-cropper/index.wxss */
 
- .avatar-container {
 
-   uni-button:after {
 
-     border: 0;
 
-   }
 
-   .cropper-content {
 
-     min-height: 750rpx;
 
-     width: 100%;
 
-   }
 
-   .uni-corpper {
 
-     position: relative;
 
-     overflow: hidden;
 
-     -webkit-user-select: none;
 
-     -moz-user-select: none;
 
-     -ms-user-select: none;
 
-     user-select: none;
 
-     -webkit-tap-highlight-color: transparent;
 
-     -webkit-touch-callout: none;
 
-     box-sizing: border-box;
 
-   }
 
-   .uni-corpper-content {
 
-     position: relative;
 
-   }
 
-   .uni-corpper-content image {
 
-     display: block;
 
-     width: 100%;
 
-     min-width: 0 !important;
 
-     max-width: none !important;
 
-     height: 100%;
 
-     min-height: 0 !important;
 
-     max-height: none !important;
 
-     image-orientation: 0deg !important;
 
-     margin: 0 auto;
 
-   }
 
-   /* 移动图片效果 */
 
-   .uni-cropper-drag-box {
 
-     position: absolute;
 
-     top: 0;
 
-     right: 0;
 
-     bottom: 0;
 
-     left: 0;
 
-     cursor: move;
 
-     background: rgba(0, 0, 0, 0.6);
 
-     z-index: 1;
 
-   }
 
-   /* 内部的信息 */
 
-   .uni-corpper-crop-box {
 
-     position: absolute;
 
-     background: rgba(255, 255, 255, 0.3);
 
-     z-index: 2;
 
-   }
 
-   .uni-corpper-crop-box .uni-cropper-view-box {
 
-     position: relative;
 
-     display: block;
 
-     width: 100%;
 
-     height: 100%;
 
-     overflow: visible;
 
-     outline: 1rpx solid #69f;
 
-     outline-color: rgba(102, 153, 255, 0.75);
 
-   }
 
-   /* 横向虚线 */
 
-   .uni-cropper-dashed-h {
 
-     position: absolute;
 
-     top: 33.33333333%;
 
-     left: 0;
 
-     width: 100%;
 
-     height: 33.33333333%;
 
-     border-top: 1rpx dashed rgba(255, 255, 255, 0.5);
 
-     border-bottom: 1rpx dashed rgba(255, 255, 255, 0.5);
 
-   }
 
-   /* 纵向虚线 */
 
-   .uni-cropper-dashed-v {
 
-     position: absolute;
 
-     left: 33.33333333%;
 
-     top: 0;
 
-     width: 33.33333333%;
 
-     height: 100%;
 
-     border-left: 1rpx dashed rgba(255, 255, 255, 0.5);
 
-     border-right: 1rpx dashed rgba(255, 255, 255, 0.5);
 
-   }
 
-   /* 四个方向的线  为了之后的拖动事件*/
 
-   .uni-cropper-line-t {
 
-     position: absolute;
 
-     display: block;
 
-     width: 100%;
 
-     background-color: #69f;
 
-     top: 0;
 
-     left: 0;
 
-     height: 1rpx;
 
-     opacity: 0.1;
 
-     cursor: n-resize;
 
-   }
 
-   .uni-cropper-line-t::before {
 
-     content: "";
 
-     position: absolute;
 
-     top: 50%;
 
-     right: 0rpx;
 
-     width: 100%;
 
-     -webkit-transform: translate3d(0, -50%, 0);
 
-     transform: translate3d(0, -50%, 0);
 
-     bottom: 0;
 
-     height: 41rpx;
 
-     background: transparent;
 
-     z-index: 11;
 
-   }
 
-   .uni-cropper-line-r {
 
-     position: absolute;
 
-     display: block;
 
-     background-color: #69f;
 
-     top: 0;
 
-     right: 0rpx;
 
-     width: 1rpx;
 
-     opacity: 0.1;
 
-     height: 100%;
 
-     cursor: e-resize;
 
-   }
 
-   .uni-cropper-line-r::before {
 
-     content: "";
 
-     position: absolute;
 
-     top: 0;
 
-     left: 50%;
 
-     width: 41rpx;
 
-     -webkit-transform: translate3d(-50%, 0, 0);
 
-     transform: translate3d(-50%, 0, 0);
 
-     bottom: 0;
 
-     height: 100%;
 
-     background: transparent;
 
-     z-index: 11;
 
-   }
 
-   .uni-cropper-line-b {
 
-     position: absolute;
 
-     display: block;
 
-     width: 100%;
 
-     background-color: #69f;
 
-     bottom: 0;
 
-     left: 0;
 
-     height: 1rpx;
 
-     opacity: 0.1;
 
-     cursor: s-resize;
 
-   }
 
-   .uni-cropper-line-b::before {
 
-     content: "";
 
-     position: absolute;
 
-     top: 50%;
 
-     right: 0rpx;
 
-     width: 100%;
 
-     -webkit-transform: translate3d(0, -50%, 0);
 
-     transform: translate3d(0, -50%, 0);
 
-     bottom: 0;
 
-     height: 41rpx;
 
-     background: transparent;
 
-     z-index: 11;
 
-   }
 
-   .uni-cropper-line-l {
 
-     position: absolute;
 
-     display: block;
 
-     background-color: #69f;
 
-     top: 0;
 
-     left: 0;
 
-     width: 1rpx;
 
-     opacity: 0.1;
 
-     height: 100%;
 
-     cursor: w-resize;
 
-   }
 
-   .uni-cropper-line-l::before {
 
-     content: "";
 
-     position: absolute;
 
-     top: 0;
 
-     left: 50%;
 
-     width: 41rpx;
 
-     -webkit-transform: translate3d(-50%, 0, 0);
 
-     transform: translate3d(-50%, 0, 0);
 
-     bottom: 0;
 
-     height: 100%;
 
-     background: transparent;
 
-     z-index: 11;
 
-   }
 
-   .uni-cropper-point {
 
-     width: 5rpx;
 
-     height: 5rpx;
 
-     background-color: #69f;
 
-     opacity: 0.75;
 
-     position: absolute;
 
-     z-index: 3;
 
-   }
 
-   .point-t {
 
-     top: -3rpx;
 
-     left: 50%;
 
-     margin-left: -3rpx;
 
-     cursor: n-resize;
 
-   }
 
-   .point-tr {
 
-     top: -3rpx;
 
-     left: 100%;
 
-     margin-left: -3rpx;
 
-     cursor: n-resize;
 
-   }
 
-   .point-r {
 
-     top: 50%;
 
-     left: 100%;
 
-     margin-left: -3rpx;
 
-     margin-top: -3rpx;
 
-     cursor: n-resize;
 
-   }
 
-   .point-rb {
 
-     left: 100%;
 
-     top: 100%;
 
-     -webkit-transform: translate3d(-50%, -50%, 0);
 
-     transform: translate3d(-50%, -50%, 0);
 
-     cursor: n-resize;
 
-     width: 36rpx;
 
-     height: 36rpx;
 
-     background-color: #69f;
 
-     position: absolute;
 
-     z-index: 1112;
 
-     opacity: 1;
 
-   }
 
-   .point-b {
 
-     left: 50%;
 
-     top: 100%;
 
-     margin-left: -3rpx;
 
-     margin-top: -3rpx;
 
-     cursor: n-resize;
 
-   }
 
-   .point-bl {
 
-     left: 0%;
 
-     top: 100%;
 
-     margin-left: -3rpx;
 
-     margin-top: -3rpx;
 
-     cursor: n-resize;
 
-   }
 
-   .point-l {
 
-     left: 0%;
 
-     top: 50%;
 
-     margin-left: -3rpx;
 
-     margin-top: -3rpx;
 
-     cursor: n-resize;
 
-   }
 
-   .point-lt {
 
-     left: 0%;
 
-     top: 0%;
 
-     margin-left: -3rpx;
 
-     margin-top: -3rpx;
 
-     cursor: n-resize;
 
-   }
 
-   /* 裁剪框预览内容 */
 
-   .uni-cropper-viewer {
 
-     position: relative;
 
-     width: 100%;
 
-     height: 100%;
 
-     overflow: hidden;
 
-   }
 
-   .uni-cropper-viewer image {
 
-     position: absolute;
 
-     z-index: 2;
 
-   }
 
- }
 
- </style>
 
 
  |