使用CropperJS旋转图像后触发事件

时间:2017-07-21 01:11:01

标签: cropperjs

我试图在CropperJS图像旋转或缩放后尝试触发事件处理程序,类似于" cropend"在裁剪窗口中拖动图像后触发事件。

CropperJS可以实现吗?

1 个答案:

答案 0 :(得分:0)

我想这是可能的。

以下是我解决此问题的方法。我必须在多个事件后执行一个动作。

var image = document.getElementById('demo');

// declare event handler before cropper init
$(image).on('ready zoom', function () {
   // do common things here
});

new Cropper(image, {
    ready: function () {
       // do something here
    },
    zoom: function () {
       // do something here
    },
    // ...other events
});

这是你要问的问题吗?