AlloyCrop
AlloyCrop copied to clipboard
确定/取消按钮点击穿透的问题
点透问题建议统一使用touch事件吧,还有希望给最外层的div加个样式名(好改样式),也希望能限制滑动区域(不超过图片范围)或者给一个参数来开关这个限制
找到解决方法了吗,点击穿透
这个方案可以把cancel回调和ok回调加上一个setTimeout解决。
_cancel: function () {
setTimeout(() => {
this._css(this.croppingBox, {
display: "none"
});
}, 300);
this.cancel();
},
_ok: function () {
this.crop();
setTimeout(() => {
this._css(this.croppingBox, {
display: "none"
});
}, 300);
this.ok(this.canvas.toDataURL("image/" + this.type), this.canvas);
},
我试着提交一下PR