@10yun/cv-mobile-ui 0.5.29 → 0.5.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/plugins/luch-request/adapters/index.js +131 -0
- package/plugins/luch-request/core/InterceptorManager.js +50 -0
- package/plugins/luch-request/core/Request.js +199 -0
- package/plugins/luch-request/core/buildFullPath.js +20 -0
- package/plugins/luch-request/core/defaults.js +32 -0
- package/plugins/luch-request/core/dispatchRequest.js +5 -0
- package/plugins/luch-request/core/mergeConfig.js +125 -0
- package/plugins/luch-request/core/settle.js +16 -0
- package/plugins/luch-request/helpers/buildURL.js +71 -0
- package/plugins/luch-request/helpers/combineURLs.js +12 -0
- package/plugins/luch-request/helpers/isAbsoluteURL.js +14 -0
- package/plugins/luch-request/index.d.ts +197 -0
- package/plugins/luch-request/index.js +2 -0
- package/plugins/luch-request/readme.md +3 -0
- package/plugins/luch-request/utils/clone.js +264 -0
- package/plugins/luch-request/utils.js +131 -0
- package/plugins/request.js +2 -2
- package/ui-cv/components/cv-form-item/cv-form-item.vue +1 -1
- package/ui-fireui/fui-actionsheet/fui-actionsheet.vue +202 -0
- package/ui-fireui/fui-alert/fui-alert.vue +141 -0
- package/ui-fireui/fui-badge/fui-badge.vue +158 -0
- package/ui-fireui/fui-bottom-navigation/fui-bottom-navigation.vue +390 -0
- package/ui-fireui/fui-bottom-popup/fui-bottom-popup.vue +100 -0
- package/ui-fireui/fui-bubble-popup/fui-bubble-popup.vue +236 -0
- package/ui-fireui/fui-button/fui-button.vue +424 -0
- package/ui-fireui/fui-calendar/fui-calendar.js +915 -0
- package/ui-fireui/fui-calendar/fui-calendar.vue +868 -0
- package/ui-fireui/fui-card/fui-card.vue +231 -0
- package/ui-fireui/fui-cascade-selection/fui-cascade-selection.vue +538 -0
- package/ui-fireui/fui-circular-progress/fui-circular-progress.vue +261 -0
- package/ui-fireui/fui-collapse/fui-collapse.vue +179 -0
- package/ui-fireui/fui-countdown/fui-countdown.vue +301 -0
- package/ui-fireui/fui-datetime/fui-datetime.vue +570 -0
- package/ui-fireui/fui-divider/fui-divider.vue +118 -0
- package/ui-fireui/fui-drawer/fui-drawer.vue +103 -0
- package/ui-fireui/fui-dropdown-list/fui-dropdown-list.vue +70 -0
- package/ui-fireui/fui-fab/fui-fab.vue +284 -0
- package/ui-fireui/fui-footer/fui-footer.vue +131 -0
- package/ui-fireui/fui-grid/fui-grid.vue +42 -0
- package/ui-fireui/fui-grid-item/fui-grid-item.vue +142 -0
- package/ui-fireui/fui-icon/fui-icon.vue +820 -0
- package/ui-fireui/fui-image-cropper/fui-image-cropper.vue +1058 -0
- package/ui-fireui/fui-image-group/fui-image-group.vue +149 -0
- package/ui-fireui/fui-keyboard/fui-keyboard.vue +254 -0
- package/ui-fireui/fui-keyboard-input/fui-keyboard-input.vue +78 -0
- package/ui-fireui/fui-list-cell/fui-list-cell.vue +178 -0
- package/ui-fireui/fui-list-view/fui-list-view.vue +87 -0
- package/ui-fireui/fui-loading/fui-loading.vue +78 -0
- package/ui-fireui/fui-loadmore/fui-loadmore.vue +163 -0
- package/ui-fireui/fui-modal/fui-modal.vue +392 -0
- package/ui-fireui/fui-navigation-bar/fui-navigation-bar.vue +180 -0
- package/ui-fireui/fui-no-data/fui-no-data.vue +116 -0
- package/ui-fireui/fui-nomore/fui-nomore.vue +116 -0
- package/ui-fireui/fui-numberbox/fui-numberbox.vue +234 -0
- package/ui-fireui/fui-numberbox-border/fui-numberbox-border.vue +232 -0
- package/ui-fireui/fui-picture-cropper/fui-picture-cropper.vue +682 -0
- package/ui-fireui/fui-picture-cropper/fui-picture-cropper.wxs +560 -0
- package/ui-fireui/fui-rate/fui-rate.vue +167 -0
- package/ui-fireui/fui-round-progress/fui-round-progress.vue +306 -0
- package/ui-fireui/fui-scroll-top/fui-scroll-top.vue +189 -0
- package/ui-fireui/fui-sharemodel/fui-sharemodel.vue +181 -0
- package/ui-fireui/fui-skeleton/fui-skeleton.vue +248 -0
- package/ui-fireui/fui-steps/fui-steps.vue +214 -0
- package/ui-fireui/fui-sticky/fui-sticky.vue +155 -0
- package/ui-fireui/fui-sticky-wxs/fui-sticky-wxs.vue +133 -0
- package/ui-fireui/fui-sticky-wxs/fui-sticky.wxs +44 -0
- package/ui-fireui/fui-swipe-action/fui-swipe-action.vue +301 -0
- package/ui-fireui/fui-tabbar/fui-tabbar.vue +283 -0
- package/ui-fireui/fui-tabs/fui-tabs.vue +284 -0
- package/ui-fireui/fui-tabs2/fui-tabs2.vue +284 -0
- package/ui-fireui/fui-tag/fui-tag.vue +374 -0
- package/ui-fireui/fui-time-axis/fui-time-axis.vue +36 -0
- package/ui-fireui/fui-timeaxis-item/fui-timeaxis-item.vue +48 -0
- package/ui-fireui/fui-tips/fui-tips.vue +161 -0
- package/ui-fireui/fui-toast/fui-toast.vue +117 -0
- package/ui-fireui/fui-top-dropdown/fui-top-dropdown.vue +129 -0
- package/ui-fireui/fui-upload/fui-upload.vue +446 -0
- package/ui-fireui/fui-uploadsamll/fui-uploadsamll.vue +472 -0
- package/uview-plus/README.md +1 -1
- package/uview-plus/changelog-wu-tool.md +21 -0
- package/uview-plus/changelog-wu.md +91 -0
- package/uview-plus/components/u-action-sheet/_doc/changelog.md +12 -0
- package/uview-plus/components/u-action-sheet/_doc/package.json +92 -0
- package/uview-plus/components/u-action-sheet/_doc/readme.md +16 -0
- package/uview-plus/components/u-app-update/_doc/changelog.md +26 -0
- package/uview-plus/components/u-app-update/_doc/package.json +89 -0
- package/uview-plus/components/u-app-update/_doc/readme.md +16 -0
- package/uview-plus/components/u-app-update/config.js +120 -0
- package/uview-plus/components/u-app-update/img/act.png +0 -0
- package/uview-plus/components/u-app-update/img/appUploadAlertBoxBg.png +0 -0
- package/uview-plus/components/u-app-update/img/close.png +0 -0
- package/uview-plus/components/u-app-update/js-sdk/checkVersion.js +81 -0
- package/uview-plus/components/u-app-update/js-sdk/silentlyAppUpdate.js +41 -0
- package/uview-plus/components/u-app-update/pages/index.vue +8 -0
- package/uview-plus/components/u-app-update/u-app-update.vue +583 -0
- package/uview-plus/components/u-button-wu/_doc/changelog.md +6 -0
- package/uview-plus/components/u-button-wu/_doc/package.json +89 -0
- package/uview-plus/components/u-button-wu/_doc/readme.md +16 -0
- package/uview-plus/components/u-button-wu/u-button-wu.vue +522 -0
- package/uview-plus/components/u-button-wu/vue.scss +81 -0
- package/uview-plus/components/u-calendar-wu/_doc/changelog.md +145 -0
- package/uview-plus/components/u-calendar-wu/_doc/package.json +90 -0
- package/uview-plus/components/u-calendar-wu/_doc/readme.md +16 -0
- package/uview-plus/components/u-calendar-wu/calendar.js +664 -0
- package/uview-plus/components/u-calendar-wu/i18n/en.json +14 -0
- package/uview-plus/components/u-calendar-wu/i18n/index.js +8 -0
- package/uview-plus/components/u-calendar-wu/i18n/zh-Hans.json +14 -0
- package/uview-plus/components/u-calendar-wu/i18n/zh-Hant.json +14 -0
- package/uview-plus/components/u-calendar-wu/props.js +166 -0
- package/uview-plus/components/u-calendar-wu/style.css +196 -0
- package/uview-plus/components/u-calendar-wu/u-calendar-wu.vue +921 -0
- package/uview-plus/components/u-calendar-wu/util.js +552 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-block/props.js +73 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-block/wu-calendar-block.vue +122 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-item/props.js +55 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-item/wu-calendar-item.vue +293 -0
- package/uview-plus/components/u-cell/_doc/changelog.md +6 -0
- package/uview-plus/components/u-cell/_doc/package.json +89 -0
- package/uview-plus/components/u-cell/_doc/readme.md +25 -0
- package/uview-plus/components/u-checkbox/_doc/changelog.md +8 -0
- package/uview-plus/components/u-checkbox/_doc/package.json +88 -0
- package/uview-plus/components/u-checkbox/_doc/readme.md +25 -0
- package/uview-plus/components/u-code/_doc/changelog.md +6 -0
- package/uview-plus/components/u-code/_doc/package.json +86 -0
- package/uview-plus/components/u-code/_doc/readme.md +16 -0
- package/uview-plus/components/u-drag-sort/_doc/changelog.md +0 -0
- package/uview-plus/components/u-drag-sort/_doc/package.json +85 -0
- package/uview-plus/components/u-drag-sort/_doc/readme.md +16 -0
- package/uview-plus/components/u-drag-sort/u-drag-sort.vue +3 -0
- package/uview-plus/components/u-empty/u-empty.vue +27 -1
- package/uview-plus/components/u-gap/_doc/changelog.md +4 -0
- package/uview-plus/components/u-gap/_doc/package.json +86 -0
- package/uview-plus/components/u-gap/_doc/readme.md +22 -0
- package/uview-plus/components/u-icon/_doc/changelog.md +10 -0
- package/uview-plus/components/u-icon/_doc/package.json +85 -0
- package/uview-plus/components/u-icon/_doc/readme.md +10 -0
- package/uview-plus/components/u-icon/icon.js +23 -25
- package/uview-plus/components/u-icon/icons.js +213 -213
- package/uview-plus/components/u-icon/style.css +3 -3
- package/uview-plus/components/u-icon/u-icon2.vue +149 -0
- package/uview-plus/components/u-image-wu/_doc/changelog.md +21 -0
- package/uview-plus/components/u-image-wu/_doc/package.json +88 -0
- package/uview-plus/components/u-image-wu/_doc/readme.md +11 -0
- package/uview-plus/components/u-image-wu/props.js +94 -0
- package/uview-plus/components/u-image-wu/u-image-wu.vue +243 -0
- package/uview-plus/components/u-input/_doc/changelog.md +6 -0
- package/uview-plus/components/u-input/_doc/package.json +88 -0
- package/uview-plus/components/u-input/_doc/readme.md +16 -0
- package/uview-plus/components/u-line/_doc/changelog.md +8 -0
- package/uview-plus/components/u-line/_doc/package.json +86 -0
- package/uview-plus/components/u-line/_doc/readme.md +16 -0
- package/uview-plus/components/u-link/_doc/changelog.md +8 -0
- package/uview-plus/components/u-link/_doc/package.json +86 -0
- package/uview-plus/components/u-link/_doc/readme.md +20 -0
- package/uview-plus/components/u-loading-icon/_doc/changelog.md +12 -0
- package/uview-plus/components/u-loading-icon/_doc/package.json +86 -0
- package/uview-plus/components/u-loading-icon/_doc/readme.md +16 -0
- package/uview-plus/components/u-loading-icon/props.js +1 -1
- package/uview-plus/components/u-navbar/_doc/changelog.md +6 -0
- package/uview-plus/components/u-navbar/_doc/package.json +89 -0
- package/uview-plus/components/u-navbar/_doc/readme.md +16 -0
- package/uview-plus/components/u-navbar-wu/props.js +102 -0
- package/uview-plus/components/u-navbar-wu/u-navbar-wu.vue +196 -0
- package/uview-plus/components/u-number-box/_doc/changelog.md +19 -0
- package/uview-plus/components/u-number-box/_doc/package.json +88 -0
- package/uview-plus/components/u-number-box/_doc/readme.md +16 -0
- package/uview-plus/components/u-overlay/_doc/changelog.md +4 -0
- package/uview-plus/components/u-overlay/_doc/package.json +88 -0
- package/uview-plus/components/u-overlay/_doc/readme.md +16 -0
- package/uview-plus/components/u-popup/_doc/changelog.md +4 -0
- package/uview-plus/components/u-popup/_doc/package.json +92 -0
- package/uview-plus/components/u-popup/_doc/readme.md +16 -0
- package/uview-plus/components/u-popup-wu/keypress.js +45 -0
- package/uview-plus/components/u-popup-wu/u-popup-wu.vue +519 -0
- package/uview-plus/components/u-radio/_doc/changelog.md +6 -0
- package/uview-plus/components/u-radio/_doc/package.json +88 -0
- package/uview-plus/components/u-radio/_doc/readme.md +25 -0
- package/uview-plus/components/u-row/_doc/changelog.md +8 -0
- package/uview-plus/components/u-row/_doc/package.json +86 -0
- package/uview-plus/components/u-row/_doc/readme.md +16 -0
- package/uview-plus/components/u-safe-bottom/_doc/changelog.md +6 -0
- package/uview-plus/components/u-safe-bottom/_doc/package.json +86 -0
- package/uview-plus/components/u-safe-bottom/_doc/readme.md +16 -0
- package/uview-plus/components/u-sku-wu/_doc/changelog.md +27 -0
- package/uview-plus/components/u-sku-wu/_doc/package.json +93 -0
- package/uview-plus/components/u-sku-wu/_doc/readme.md +16 -0
- package/uview-plus/components/u-sku-wu/props.js +86 -0
- package/uview-plus/components/u-sku-wu/style.css +271 -0
- package/uview-plus/components/u-sku-wu/u-sku-wu.vue +864 -0
- package/uview-plus/components/u-status-bar/_doc/changelog.md +4 -0
- package/uview-plus/components/u-status-bar/_doc/package.json +86 -0
- package/uview-plus/components/u-status-bar/_doc/readme.md +16 -0
- package/uview-plus/components/u-text/_doc/changelog.md +10 -0
- package/uview-plus/components/u-text/_doc/package.json +89 -0
- package/uview-plus/components/u-text/_doc/readme.md +20 -0
- package/uview-plus/components/u-textarea/_doc/changelog.md +6 -0
- package/uview-plus/components/u-textarea/_doc/package.json +86 -0
- package/uview-plus/components/u-textarea/_doc/readme.md +25 -0
- package/uview-plus/components/u-transition/_doc/changelog.md +14 -0
- package/uview-plus/components/u-transition/_doc/package.json +86 -0
- package/uview-plus/components/u-transition/_doc/readme.md +16 -0
- package/uview-plus/components/u-transition-wu/createAnimation.js +148 -0
- package/uview-plus/components/u-transition-wu/props.js +32 -0
- package/uview-plus/components/u-transition-wu/u-transition.vue +300 -0
- package/uview-plus/components/u-verification-code/u-verification-code.vue +161 -0
- package/uview-plus/index.js +107 -94
- package/uview-plus/libs/config/config.js +46 -48
- package/uview-plus/libs/css/color.scss +32 -311
- package/uview-plus/libs/css/components-wu.scss +30 -0
- package/uview-plus/libs/css/vue.scss +10 -10
- package/uview-plus/libs/function/calc.js +61 -55
- package/uview-plus/libs/function/cc.js +66 -0
- package/uview-plus/libs/function/color/color-convert/CHANGELOG.md +54 -0
- package/uview-plus/libs/function/color/color-convert/LICENSE +21 -0
- package/uview-plus/libs/function/color/color-convert/README.md +68 -0
- package/uview-plus/libs/function/color/color-convert/conversions.js +839 -0
- package/uview-plus/libs/function/color/color-convert/index.js +81 -0
- package/uview-plus/libs/function/color/color-convert/package.json +48 -0
- package/uview-plus/libs/function/color/color-convert/route.js +97 -0
- package/uview-plus/libs/function/color/color-name/LICENSE +8 -0
- package/uview-plus/libs/function/color/color-name/README.md +11 -0
- package/uview-plus/libs/function/color/color-name/index.js +152 -0
- package/uview-plus/libs/function/color/color-name/package.json +28 -0
- package/uview-plus/libs/function/color/color-string/LICENSE +21 -0
- package/uview-plus/libs/function/color/color-string/README.md +62 -0
- package/uview-plus/libs/function/color/color-string/index.js +244 -0
- package/uview-plus/libs/function/color/color-string/package.json +39 -0
- package/uview-plus/libs/function/color/color.js +496 -0
- package/uview-plus/libs/function/color/index.js +158 -0
- package/uview-plus/libs/function/color/is-arrayish/LICENSE +21 -0
- package/uview-plus/libs/function/color/is-arrayish/README.md +16 -0
- package/uview-plus/libs/function/color/is-arrayish/index.js +9 -0
- package/uview-plus/libs/function/color/is-arrayish/package.json +45 -0
- package/uview-plus/libs/function/color/is-arrayish/yarn-error.log +1443 -0
- package/uview-plus/libs/function/color/simple-swizzle/LICENSE +21 -0
- package/uview-plus/libs/function/color/simple-swizzle/README.md +39 -0
- package/uview-plus/libs/function/color/simple-swizzle/index.js +29 -0
- package/uview-plus/libs/function/color/simple-swizzle/package.json +36 -0
- package/uview-plus/libs/function/colorGradient.js +108 -106
- package/uview-plus/libs/function/debounce.js +17 -17
- package/uview-plus/libs/function/digit.js +1 -3
- package/uview-plus/libs/function/http.js +3 -3
- package/uview-plus/libs/function/index-wu.js +231 -0
- package/uview-plus/libs/function/index.js +579 -566
- package/uview-plus/libs/function/platform.js +18 -18
- package/uview-plus/libs/function/test.js +135 -137
- package/uview-plus/libs/function/throttle.js +17 -17
- package/uview-plus/libs/luch-request/core/Request.js +199 -199
- package/uview-plus/libs/mixin/mpMixin.js +1 -0
- package/uview-plus/libs/mixin/openType.js +33 -0
- package/uview-plus/libs/util/async-validator.js +1343 -1343
- package/uview-plus/libs/util/dayjs.js +404 -0
- package/uview-plus/libs/util/route.js +101 -105
- package/uview-plus/package-wu-tool.json +84 -0
- package/uview-plus/package-wu.json +112 -0
- package/uview-plus/package.json +106 -95
- package/uview-plus/readme-wu.md +148 -0
- package/uview-ui/index.js +51 -52
- package/plugins/uni-upgrade.js +0 -294
|
@@ -0,0 +1,560 @@
|
|
|
1
|
+
var cropper = {
|
|
2
|
+
CUT_START: null,
|
|
3
|
+
cutX: 0, //画布x轴起点
|
|
4
|
+
cutY: 0, //画布y轴起点0
|
|
5
|
+
touchRelative: [{
|
|
6
|
+
x: 0,
|
|
7
|
+
y: 0
|
|
8
|
+
}], //手指或鼠标和图片中心的相对位置
|
|
9
|
+
flagCutTouch: false, //是否是拖动裁剪框
|
|
10
|
+
hypotenuseLength: 0, //双指触摸时斜边长度
|
|
11
|
+
flagEndTouch: false, //是否结束触摸
|
|
12
|
+
canvasWidth: 0,
|
|
13
|
+
canvasHeight: 0,
|
|
14
|
+
imgWidth: 0, //图片宽度
|
|
15
|
+
imgHeight: 0, //图片高度
|
|
16
|
+
scale: 1, //图片缩放比
|
|
17
|
+
angle: 0, //图片旋转角度
|
|
18
|
+
imgTop: 0, //图片上边距
|
|
19
|
+
imgLeft: 0, //图片左边距
|
|
20
|
+
//是否限制移动范围(剪裁框只能在图片内,为true不可触摸转动图片)
|
|
21
|
+
limitMove: true,
|
|
22
|
+
minHeight: 0,
|
|
23
|
+
maxHeight: 0,
|
|
24
|
+
minWidth: 0,
|
|
25
|
+
maxWidth: 0,
|
|
26
|
+
windowHeight: 0,
|
|
27
|
+
windowWidth: 0,
|
|
28
|
+
init: true
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
function bool(str) {
|
|
32
|
+
return str === 'true' || str == true ? true : false
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
function touchstart(e, ins) {
|
|
36
|
+
//var instance = e.instance;
|
|
37
|
+
// var state = instance.getState();
|
|
38
|
+
var touch = e.touches || e.changedTouches;
|
|
39
|
+
cropper.flagEndTouch = false;
|
|
40
|
+
if (touch.length == 1) {
|
|
41
|
+
cropper.touchRelative[0] = {
|
|
42
|
+
x: touch[0].pageX - cropper.imgLeft,
|
|
43
|
+
y: touch[0].pageY - cropper.imgTop
|
|
44
|
+
};
|
|
45
|
+
} else {
|
|
46
|
+
var width = Math.abs(touch[0].pageX - touch[1].pageX);
|
|
47
|
+
var height = Math.abs(touch[0].pageY - touch[1].pageY);
|
|
48
|
+
cropper.touchRelative = [{
|
|
49
|
+
x: touch[0].pageX - cropper.imgLeft,
|
|
50
|
+
y: touch[0].pageY - cropper.imgTop
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
x: touch[1].pageX - cropper.imgLeft,
|
|
54
|
+
y: touch[1].pageY - cropper.imgTop
|
|
55
|
+
}
|
|
56
|
+
];
|
|
57
|
+
cropper.hypotenuseLength = Math.sqrt(Math.pow(width, 2) + Math.pow(height, 2));
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
function moveDuring(ins) {
|
|
63
|
+
if (!ins) return;
|
|
64
|
+
ins.callMethod('moveDuring')
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
function moveStop(ins) {
|
|
68
|
+
if (!ins) return;
|
|
69
|
+
ins.callMethod('moveStop')
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
function setCutCenter(ins) {
|
|
73
|
+
var cutY = (cropper.windowHeight - cropper.canvasHeight) * 0.5;
|
|
74
|
+
var cutX = (cropper.windowWidth - cropper.canvasWidth) * 0.5;
|
|
75
|
+
//顺序不能变
|
|
76
|
+
cropper.imgTop = cropper.imgTop - cropper.cutY + cutY;
|
|
77
|
+
cropper.cutY = cutY; //截取的框上边距
|
|
78
|
+
cropper.imgLeft = cropper.imgLeft - cropper.cutX + cutX;
|
|
79
|
+
cropper.cutX = cutX; //截取的框左边距
|
|
80
|
+
styleUpdate(ins)
|
|
81
|
+
cutDetectionPosition(ins)
|
|
82
|
+
imgTransform(ins)
|
|
83
|
+
updateData(ins)
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
function touchmove(e, ins) {
|
|
87
|
+
var touch = e.touches || e.changedTouches;
|
|
88
|
+
if (cropper.flagEndTouch) return;
|
|
89
|
+
moveDuring(ins);
|
|
90
|
+
if (e.touches.length == 1) {
|
|
91
|
+
var left = touch[0].pageX - cropper.touchRelative[0].x,
|
|
92
|
+
top = touch[0].pageY - cropper.touchRelative[0].y;
|
|
93
|
+
cropper.imgLeft = left;
|
|
94
|
+
cropper.imgTop = top;
|
|
95
|
+
imgTransform(ins);
|
|
96
|
+
imgMarginDetectionPosition(ins);
|
|
97
|
+
} else {
|
|
98
|
+
var res = e.instance.getDataset();
|
|
99
|
+
var minScale = +res.minscale;
|
|
100
|
+
var maxScale = +res.maxscale;
|
|
101
|
+
var disableRotate = bool(res.disablerotate)
|
|
102
|
+
var width = Math.abs(touch[0].pageX - touch[1].pageX),
|
|
103
|
+
height = Math.abs(touch[0].pageY - touch[1].pageY),
|
|
104
|
+
hypotenuse = Math.sqrt(Math.pow(width, 2) + Math.pow(height, 2)),
|
|
105
|
+
scale = cropper.scale * (hypotenuse / cropper.hypotenuseLength),
|
|
106
|
+
current_deg = 0;
|
|
107
|
+
scale = scale <= minScale ? minScale : scale;
|
|
108
|
+
scale = scale >= maxScale ? maxScale : scale;
|
|
109
|
+
cropper.scale = scale;
|
|
110
|
+
imgMarginDetectionScale(ins, true);
|
|
111
|
+
var touchRelative = [{
|
|
112
|
+
x: touch[0].pageX - cropper.imgLeft,
|
|
113
|
+
y: touch[0].pageY - cropper.imgTop
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
x: touch[1].pageX - cropper.imgLeft,
|
|
117
|
+
y: touch[1].pageY - cropper.imgTop
|
|
118
|
+
}
|
|
119
|
+
];
|
|
120
|
+
if (!disableRotate) {
|
|
121
|
+
var first_atan = (180 / Math.PI) * Math.atan2(touchRelative[0].y, touchRelative[0].x);
|
|
122
|
+
var first_atan_old = (180 / Math.PI) * Math.atan2(cropper.touchRelative[0].y, cropper.touchRelative[0].x);
|
|
123
|
+
var second_atan = (180 / Math.PI) * Math.atan2(touchRelative[1].y, touchRelative[1].x);
|
|
124
|
+
var second_atan_old = (180 / Math.PI) * Math.atan2(cropper.touchRelative[1].y, cropper.touchRelative[1].x);
|
|
125
|
+
var first_deg = first_atan - first_atan_old,
|
|
126
|
+
second_deg = second_atan - second_atan_old;
|
|
127
|
+
if (first_deg != 0) {
|
|
128
|
+
current_deg = first_deg;
|
|
129
|
+
} else if (second_deg != 0) {
|
|
130
|
+
current_deg = second_deg;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
cropper.touchRelative = touchRelative;
|
|
134
|
+
cropper.hypotenuseLength = Math.sqrt(Math.pow(width, 2) + Math.pow(height, 2));
|
|
135
|
+
//更新视图
|
|
136
|
+
cropper.angle = cropper.angle + current_deg;
|
|
137
|
+
imgTransform(ins);
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
function touchend(e, ins) {
|
|
142
|
+
cropper.flagEndTouch = true;
|
|
143
|
+
moveStop(ins);
|
|
144
|
+
updateData(ins)
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
function cutTouchStart(e, ins) {
|
|
149
|
+
var touch = e.touches || e.changedTouches;
|
|
150
|
+
var currentX = touch[0].pageX;
|
|
151
|
+
var currentY = touch[0].pageY;
|
|
152
|
+
|
|
153
|
+
/*
|
|
154
|
+
* (右下-1 右上-2 左上-3 左下-4)
|
|
155
|
+
* left_x [3,4]
|
|
156
|
+
* top_y [2,3]
|
|
157
|
+
* right_x [1,2]
|
|
158
|
+
* bottom_y [1,4]
|
|
159
|
+
*/
|
|
160
|
+
var left_x1 = cropper.cutX - 30;
|
|
161
|
+
var left_x2 = cropper.cutX + 30;
|
|
162
|
+
|
|
163
|
+
var top_y1 = cropper.cutY - 30;
|
|
164
|
+
var top_y2 = cropper.cutY + 30;
|
|
165
|
+
|
|
166
|
+
var right_x1 = cropper.cutX + cropper.canvasWidth - 30;
|
|
167
|
+
var right_x2 = cropper.cutX + cropper.canvasWidth + 30;
|
|
168
|
+
|
|
169
|
+
var bottom_y1 = cropper.cutY + cropper.canvasHeight - 30;
|
|
170
|
+
var bottom_y2 = cropper.cutY + cropper.canvasHeight + 30;
|
|
171
|
+
|
|
172
|
+
if (currentX > right_x1 && currentX < right_x2 && currentY > bottom_y1 && currentY < bottom_y2) {
|
|
173
|
+
moveDuring();
|
|
174
|
+
cropper.flagCutTouch = true;
|
|
175
|
+
cropper.flagEndTouch = true;
|
|
176
|
+
cropper.CUT_START = {
|
|
177
|
+
width: cropper.canvasWidth,
|
|
178
|
+
height: cropper.canvasHeight,
|
|
179
|
+
x: currentX,
|
|
180
|
+
y: currentY,
|
|
181
|
+
corner: 1
|
|
182
|
+
};
|
|
183
|
+
} else if (currentX > right_x1 && currentX < right_x2 && currentY > top_y1 && currentY < top_y2) {
|
|
184
|
+
moveDuring();
|
|
185
|
+
cropper.flagCutTouch = true;
|
|
186
|
+
cropper.flagEndTouch = true;
|
|
187
|
+
cropper.CUT_START = {
|
|
188
|
+
width: cropper.canvasWidth,
|
|
189
|
+
height: cropper.canvasHeight,
|
|
190
|
+
x: currentX,
|
|
191
|
+
y: currentY,
|
|
192
|
+
cutY: cropper.cutY,
|
|
193
|
+
cutX: cropper.cutX,
|
|
194
|
+
corner: 2
|
|
195
|
+
};
|
|
196
|
+
} else if (currentX > left_x1 && currentX < left_x2 && currentY > top_y1 && currentY < top_y2) {
|
|
197
|
+
moveDuring();
|
|
198
|
+
cropper.flagCutTouch = true;
|
|
199
|
+
cropper.flagEndTouch = true;
|
|
200
|
+
cropper.CUT_START = {
|
|
201
|
+
width: cropper.canvasWidth,
|
|
202
|
+
height: cropper.canvasHeight,
|
|
203
|
+
cutY: cropper.cutY,
|
|
204
|
+
cutX: cropper.cutX,
|
|
205
|
+
x: currentX,
|
|
206
|
+
y: currentY,
|
|
207
|
+
corner: 3
|
|
208
|
+
};
|
|
209
|
+
} else if (currentX > left_x1 && currentX < left_x2 && currentY > bottom_y1 && currentY < bottom_y2) {
|
|
210
|
+
moveDuring();
|
|
211
|
+
cropper.flagCutTouch = true;
|
|
212
|
+
cropper.flagEndTouch = true;
|
|
213
|
+
cropper.CUT_START = {
|
|
214
|
+
width: cropper.canvasWidth,
|
|
215
|
+
height: cropper.canvasHeight,
|
|
216
|
+
cutY: cropper.cutY,
|
|
217
|
+
cutX: cropper.cutX,
|
|
218
|
+
x: currentX,
|
|
219
|
+
y: currentY,
|
|
220
|
+
corner: 4
|
|
221
|
+
};
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
function cutTouchMove(e, ins) {
|
|
226
|
+
if (!cropper.CUT_START || cropper.CUT_START === 'null') return;
|
|
227
|
+
if (cropper.flagCutTouch) {
|
|
228
|
+
var touch = e.touches || e.changedTouches;
|
|
229
|
+
var res = e.instance.getDataset();
|
|
230
|
+
var lockRatio = bool(res.lockratio);
|
|
231
|
+
var lockWidth = bool(res.lockwidth);
|
|
232
|
+
var lockHeight = bool(res.lockheight);
|
|
233
|
+
if (lockRatio && (lockWidth || lockHeight)) return;
|
|
234
|
+
var width = cropper.canvasWidth,
|
|
235
|
+
height = cropper.canvasHeight,
|
|
236
|
+
cutY = cropper.cutY,
|
|
237
|
+
cutX = cropper.cutX;
|
|
238
|
+
|
|
239
|
+
function size_correct() {
|
|
240
|
+
width = width <= cropper.maxWidth ? (width >= cropper.minWidth ? width : cropper.minWidth) : cropper.maxWidth;
|
|
241
|
+
height = height <= cropper.maxHeight ? (height >= cropper.minHeight ? height : cropper.minHeight) : cropper.maxHeight;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
function size_inspect() {
|
|
245
|
+
if ((width > cropper.maxWidth || width < cropper.minWidth || height > cropper.maxHeight || height < cropper.minHeight) &&
|
|
246
|
+
lockRatio) {
|
|
247
|
+
size_correct();
|
|
248
|
+
return false;
|
|
249
|
+
} else {
|
|
250
|
+
size_correct();
|
|
251
|
+
return true;
|
|
252
|
+
}
|
|
253
|
+
};
|
|
254
|
+
height = cropper.CUT_START.height + (cropper.CUT_START.corner > 1 && cropper.CUT_START.corner < 4 ? 1 : -1) * (
|
|
255
|
+
cropper.CUT_START.y - touch[0].pageY);
|
|
256
|
+
switch (cropper.CUT_START.corner) {
|
|
257
|
+
case 1:
|
|
258
|
+
width = cropper.CUT_START.width - cropper.CUT_START.x + touch[0].pageX;
|
|
259
|
+
if (lockRatio) {
|
|
260
|
+
height = width / (cropper.canvasWidth / cropper.canvasHeight);
|
|
261
|
+
}
|
|
262
|
+
if (!size_inspect()) return;
|
|
263
|
+
break;
|
|
264
|
+
case 2:
|
|
265
|
+
width = cropper.CUT_START.width - cropper.CUT_START.x + touch[0].pageX;
|
|
266
|
+
if (lockRatio) {
|
|
267
|
+
height = width / (cropper.canvasWidth / cropper.canvasHeight);
|
|
268
|
+
}
|
|
269
|
+
if (!size_inspect()) return;
|
|
270
|
+
cutY = cropper.CUT_START.cutY - (height - cropper.CUT_START.height);
|
|
271
|
+
break;
|
|
272
|
+
case 3:
|
|
273
|
+
width = cropper.CUT_START.width + cropper.CUT_START.x - touch[0].pageX;
|
|
274
|
+
if (lockRatio) {
|
|
275
|
+
height = width / (cropper.canvasWidth / cropper.canvasHeight);
|
|
276
|
+
}
|
|
277
|
+
if (!size_inspect()) return;
|
|
278
|
+
cutY = cropper.CUT_START.cutY - (height - cropper.CUT_START.height);
|
|
279
|
+
cutX = cropper.CUT_START.cutX - (width - cropper.CUT_START.width);
|
|
280
|
+
break;
|
|
281
|
+
case 4:
|
|
282
|
+
width = cropper.CUT_START.width + cropper.CUT_START.x - touch[0].pageX;
|
|
283
|
+
if (lockRatio) {
|
|
284
|
+
height = width / (cropper.canvasWidth / cropper.canvasHeight);
|
|
285
|
+
}
|
|
286
|
+
if (!size_inspect()) return;
|
|
287
|
+
cutX = cropper.CUT_START.cutX - (width - cropper.CUT_START.width);
|
|
288
|
+
break;
|
|
289
|
+
default:
|
|
290
|
+
break;
|
|
291
|
+
}
|
|
292
|
+
if (!lockWidth && !lockHeight) {
|
|
293
|
+
cropper.canvasWidth = width;
|
|
294
|
+
cropper.cutX = cutX;
|
|
295
|
+
cropper.canvasHeight = height;
|
|
296
|
+
cropper.cutY = cutY;
|
|
297
|
+
canvasHeight(ins);
|
|
298
|
+
canvasWidth(ins);
|
|
299
|
+
} else if (!lockWidth) {
|
|
300
|
+
cropper.canvasWidth = width;
|
|
301
|
+
cropper.cutX = cutX;
|
|
302
|
+
canvasWidth(ins);
|
|
303
|
+
} else if (!lockHeight) {
|
|
304
|
+
cropper.canvasHeight = height;
|
|
305
|
+
cropper.cutY = cutY;
|
|
306
|
+
canvasHeight(ins);
|
|
307
|
+
}
|
|
308
|
+
styleUpdate(ins)
|
|
309
|
+
imgMarginDetectionScale(ins);
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
//检测剪裁框位置是否在允许的范围内(屏幕内)
|
|
314
|
+
function cutDetectionPosition(ins) {
|
|
315
|
+
var windowHeight = cropper.windowHeight,
|
|
316
|
+
windowWidth = cropper.windowWidth;
|
|
317
|
+
|
|
318
|
+
function cutDetectionPositionTop() {
|
|
319
|
+
//检测上边距是否在范围内
|
|
320
|
+
if (cropper.cutY < 0) {
|
|
321
|
+
cropper.cutY = 0;
|
|
322
|
+
}
|
|
323
|
+
if (cropper.cutY > windowHeight - cropper.canvasHeight) {
|
|
324
|
+
cropper.cutY = windowHeight - cropper.canvasHeight;
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
function cutDetectionPositionLeft() {
|
|
329
|
+
//检测左边距是否在范围内
|
|
330
|
+
if (cropper.cutX < 0) {
|
|
331
|
+
cropper.cutX = 0;
|
|
332
|
+
}
|
|
333
|
+
if (cropper.cutX > windowWidth - cropper.canvasWidth) {
|
|
334
|
+
cropper.cutX = windowWidth - cropper.canvasWidth;
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
//裁剪框坐标处理(如果只写一个参数则另一个默认为0,都不写默认居中)
|
|
338
|
+
if (cropper.cutY == null && cropper.cutX == null) {
|
|
339
|
+
var cutY = (windowHeight - cropper.canvasHeight) * 0.5;
|
|
340
|
+
var cutX = (windowWidth - cropper.canvasWidth) * 0.5;
|
|
341
|
+
cropper.cutY = cutY; //截取的框上边距
|
|
342
|
+
cropper.cutX = cutX; //截取的框左边距
|
|
343
|
+
} else if (cropper.cutY != null && cropper.cutX != null) {
|
|
344
|
+
cutDetectionPositionTop();
|
|
345
|
+
cutDetectionPositionLeft();
|
|
346
|
+
} else if (cropper.cutY != null && cropper.cutX == null) {
|
|
347
|
+
cutDetectionPositionTop();
|
|
348
|
+
cropper.cutX = (windowWidth - cropper.canvasWidth) / 2;
|
|
349
|
+
} else if (cropper.cutY == null && cropper.cutX != null) {
|
|
350
|
+
cutDetectionPositionLeft();
|
|
351
|
+
cropper.cutY = (windowHeight - cropper.canvasHeight) / 2;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
styleUpdate(ins)
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
/**
|
|
358
|
+
* 图片边缘检测-缩放
|
|
359
|
+
*/
|
|
360
|
+
function imgMarginDetectionScale(ins, delay) {
|
|
361
|
+
if (!cropper.limitMove) return;
|
|
362
|
+
var scale = cropper.scale;
|
|
363
|
+
var imgWidth = cropper.imgWidth;
|
|
364
|
+
var imgHeight = cropper.imgHeight;
|
|
365
|
+
if ((cropper.angle / 90) % 2) {
|
|
366
|
+
imgWidth = cropper.imgHeight;
|
|
367
|
+
imgHeight = cropper.imgWidth;
|
|
368
|
+
}
|
|
369
|
+
if (imgWidth * scale < cropper.canvasWidth) {
|
|
370
|
+
scale = cropper.canvasWidth / imgWidth;
|
|
371
|
+
}
|
|
372
|
+
if (imgHeight * scale < cropper.canvasHeight) {
|
|
373
|
+
scale = Math.max(scale, cropper.canvasHeight / imgHeight);
|
|
374
|
+
}
|
|
375
|
+
imgMarginDetectionPosition(ins, scale, delay);
|
|
376
|
+
}
|
|
377
|
+
/**
|
|
378
|
+
* 图片边缘检测-位置
|
|
379
|
+
*/
|
|
380
|
+
function imgMarginDetectionPosition(ins, scale, delay) {
|
|
381
|
+
if (!cropper.limitMove) return;
|
|
382
|
+
var left = cropper.imgLeft;
|
|
383
|
+
var top = cropper.imgTop;
|
|
384
|
+
scale = scale || cropper.scale;
|
|
385
|
+
var imgWidth = cropper.imgWidth;
|
|
386
|
+
var imgHeight = cropper.imgHeight;
|
|
387
|
+
if ((cropper.angle / 90) % 2) {
|
|
388
|
+
imgWidth = cropper.imgHeight;
|
|
389
|
+
imgHeight = cropper.imgWidth;
|
|
390
|
+
}
|
|
391
|
+
left = cropper.cutX + (imgWidth * scale) / 2 >= left ? left : cropper.cutX + (imgWidth * scale) / 2;
|
|
392
|
+
left = cropper.cutX + cropper.canvasWidth - (imgWidth * scale) / 2 <= left ? left : cropper.cutX + cropper.canvasWidth -
|
|
393
|
+
(imgWidth * scale) / 2;
|
|
394
|
+
top = cropper.cutY + (imgHeight * scale) / 2 >= top ? top : cropper.cutY + (imgHeight * scale) / 2;
|
|
395
|
+
top = cropper.cutY + cropper.canvasHeight - (imgHeight * scale) / 2 <= top ? top : cropper.cutY + cropper.canvasHeight -
|
|
396
|
+
(imgHeight * scale) / 2;
|
|
397
|
+
|
|
398
|
+
cropper.imgLeft = left;
|
|
399
|
+
cropper.imgTop = top;
|
|
400
|
+
cropper.scale = scale;
|
|
401
|
+
styleUpdate(ins)
|
|
402
|
+
if (!delay || delay === 'null') {
|
|
403
|
+
imgTransform(ins);
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
function cutTouchEnd(e, ins) {
|
|
409
|
+
moveStop(ins);
|
|
410
|
+
cropper.flagCutTouch = false;
|
|
411
|
+
updateData(ins)
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
//改变截取框大小
|
|
416
|
+
function computeCutSize(ins) {
|
|
417
|
+
if (cropper.canvasWidth > cropper.windowWidth) {
|
|
418
|
+
cropper.canvasWidth = cropper.windowWidth;
|
|
419
|
+
// canvasWidth(ins)
|
|
420
|
+
} else if (cropper.canvasWidth + cropper.cutX > cropper.windowWidth) {
|
|
421
|
+
cropper.cutX = cropper.windowWidth - cropper.cutX;
|
|
422
|
+
}
|
|
423
|
+
if (cropper.canvasHeight > cropper.windowHeight) {
|
|
424
|
+
cropper.canvasHeight = cropper.windowHeight;
|
|
425
|
+
// canvasHeight(ins)
|
|
426
|
+
} else if (cropper.canvasHeight + cropper.cutY > cropper.windowHeight) {
|
|
427
|
+
cropper.cutY = cropper.windowHeight - cropper.cutY;
|
|
428
|
+
}
|
|
429
|
+
// styleUpdate(ins)
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
function styleUpdate(ins) {
|
|
433
|
+
if (!ins) return;
|
|
434
|
+
ins.selectComponent('.fui-cropper-box').setStyle({
|
|
435
|
+
'width': cropper.canvasWidth + 'px',
|
|
436
|
+
'height': cropper.canvasHeight + 'px'
|
|
437
|
+
})
|
|
438
|
+
ins.selectComponent('.fui-content-middle').setStyle({
|
|
439
|
+
'height': cropper.canvasHeight + 'px'
|
|
440
|
+
})
|
|
441
|
+
ins.selectComponent('.fui-content-top').setStyle({
|
|
442
|
+
'height': cropper.cutY + 'px'
|
|
443
|
+
})
|
|
444
|
+
ins.selectComponent('.fui-wxs-bg').setStyle({
|
|
445
|
+
'width': cropper.cutX + 'px'
|
|
446
|
+
})
|
|
447
|
+
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
function imgTransform(ins) {
|
|
451
|
+
var owner = ins.selectComponent('.fui-cropper-image')
|
|
452
|
+
if (!owner) return
|
|
453
|
+
var x = cropper.imgLeft - cropper.imgWidth / 2;
|
|
454
|
+
var y = cropper.imgTop - cropper.imgHeight / 2;
|
|
455
|
+
owner.setStyle({
|
|
456
|
+
'transform': 'translate3d(' + x + 'px,' + y + 'px,0) scale(' + cropper.scale + ') rotate(' + cropper.angle + 'deg)'
|
|
457
|
+
})
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
function imageReset(ins) {
|
|
461
|
+
cropper.scale = 1;
|
|
462
|
+
cropper.angle = 0;
|
|
463
|
+
imgTransform(ins);
|
|
464
|
+
}
|
|
465
|
+
//监听截取框宽高变化
|
|
466
|
+
function canvasWidth(ins) {
|
|
467
|
+
if (cropper.canvasWidth < cropper.minWidth) {
|
|
468
|
+
cropper.canvasWidth = cropper.minWidth;
|
|
469
|
+
}
|
|
470
|
+
if (!ins) return;
|
|
471
|
+
computeCutSize(ins);
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
function canvasHeight(ins) {
|
|
475
|
+
if (cropper.canvasHeight < cropper.minHeight) {
|
|
476
|
+
cropper.canvasHeight = cropper.minHeight;
|
|
477
|
+
}
|
|
478
|
+
if (!ins) return;
|
|
479
|
+
computeCutSize(ins);
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
function updateData(ins) {
|
|
483
|
+
if (!ins) return;
|
|
484
|
+
ins.callMethod('change', {
|
|
485
|
+
cutX: cropper.cutX,
|
|
486
|
+
cutY: cropper.cutY,
|
|
487
|
+
canvasWidth: cropper.canvasWidth,
|
|
488
|
+
canvasHeight: cropper.canvasHeight,
|
|
489
|
+
imgWidth: cropper.imgWidth,
|
|
490
|
+
imgHeight: cropper.imgHeight,
|
|
491
|
+
scale: cropper.scale,
|
|
492
|
+
angle: cropper.angle,
|
|
493
|
+
imgTop: cropper.imgTop,
|
|
494
|
+
imgLeft: cropper.imgLeft
|
|
495
|
+
})
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
function propsChange(prop, oldProp, ownerInstance, ins) {
|
|
499
|
+
if (prop && prop !== 'null') {
|
|
500
|
+
var params = prop.split(',')
|
|
501
|
+
var type = +params[0]
|
|
502
|
+
var dataset = ins.getDataset();
|
|
503
|
+
if (cropper.init || type == 4) {
|
|
504
|
+
cropper.maxHeight = +dataset.maxheight;
|
|
505
|
+
cropper.minHeight = +dataset.minheight;
|
|
506
|
+
cropper.maxWidth = +dataset.maxwidth;
|
|
507
|
+
cropper.minWidth = +dataset.minwidth;
|
|
508
|
+
cropper.canvasWidth = +dataset.width;
|
|
509
|
+
cropper.canvasHeight = +dataset.height;
|
|
510
|
+
cropper.imgTop = dataset.windowheight / 2;
|
|
511
|
+
cropper.imgLeft = dataset.windowwidth / 2;
|
|
512
|
+
cropper.imgWidth = +dataset.imgwidth;
|
|
513
|
+
cropper.imgHeight = +dataset.imgheight;
|
|
514
|
+
cropper.windowHeight = +dataset.windowheight;
|
|
515
|
+
cropper.windowWidth = +dataset.windowwidth;
|
|
516
|
+
cropper.init = false
|
|
517
|
+
} else if (type == 2) {
|
|
518
|
+
cropper.imgWidth = +dataset.imgwidth;
|
|
519
|
+
cropper.imgHeight = +dataset.imgheight;
|
|
520
|
+
}
|
|
521
|
+
cropper.limitMove = bool(dataset.limitmove);
|
|
522
|
+
cropper.angle = +dataset.angle;
|
|
523
|
+
if (type == 3) {
|
|
524
|
+
imgTransform(ownerInstance);
|
|
525
|
+
}
|
|
526
|
+
switch (type) {
|
|
527
|
+
case 1:
|
|
528
|
+
setCutCenter(ownerInstance);
|
|
529
|
+
//设置裁剪框大小>设置图片尺寸>绘制canvas
|
|
530
|
+
computeCutSize(ownerInstance);
|
|
531
|
+
//检查裁剪框是否在范围内
|
|
532
|
+
cutDetectionPosition(ownerInstance);
|
|
533
|
+
break;
|
|
534
|
+
case 2:
|
|
535
|
+
setCutCenter(ownerInstance);
|
|
536
|
+
break;
|
|
537
|
+
case 3:
|
|
538
|
+
imgMarginDetectionScale(ownerInstance)
|
|
539
|
+
break;
|
|
540
|
+
case 4:
|
|
541
|
+
imageReset(ownerInstance);
|
|
542
|
+
break;
|
|
543
|
+
case 5:
|
|
544
|
+
setCutCenter(ownerInstance);
|
|
545
|
+
break;
|
|
546
|
+
default:
|
|
547
|
+
break;
|
|
548
|
+
}
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
export default {
|
|
553
|
+
touchstart: touchstart,
|
|
554
|
+
touchmove: touchmove,
|
|
555
|
+
touchend: touchend,
|
|
556
|
+
cutTouchStart: cutTouchStart,
|
|
557
|
+
cutTouchMove: cutTouchMove,
|
|
558
|
+
cutTouchEnd: cutTouchEnd,
|
|
559
|
+
propsChange: propsChange
|
|
560
|
+
}
|