提问者:小点点

cropper.js仅启用缩放


例如,是否可以禁用所有裁剪器功能而仅启用cropper.zoom()

如果我用cropper.disable()禁用cropper,它将禁用所有内容。


共1个答案

匿名用户

从源代码来看,似乎不支持此选项:

  // Disable (freeze) the cropper
  disable() {
    if (this.ready && !this.disabled) {
      this.disabled = true;
      addClass(this.cropper, CLASS_DISABLED);
    }

    return this;
  },

来源:https://github.com/fengyuanchen/cropperjs/blob/89f0b50c7f580135582a087cbf2417126b67d5fd/src/js/methods.js#L137

你可以打开一个问题或自己做。。。