在我的代码中,我在选择中使用了fabricjs事件,现在我正在寻找选择清除事件,它是否可用于画布
canvas.on('selection:created', function(e) {
activeGroup = canvas.getActiveGroup();
// my code
});
现在我正在寻找
canvas.on('selection:clear', function(e)
或类似的
答案 0 :(得分:3)
您可以使用'选择:已清除'事件和'之前:选择:已清除'(在'选择:已清除'之前触发的事件)事件,像这样:
在你的js文件中添加这个片段,你没问题:
function observe(eventName) {
logObservingEvent(eventName);
canvas.on(eventName, function(e){
console.log(eventName)
});
}
observe('before:selection:cleared');
observe('selection:cleared');
我认为你不需要一个jsfiddle例子,因为它非常简单。
祝你好运。答案 1 :(得分:0)
.setAttribute("align-bottom", globals.abovemd);
答案 2 :(得分:-2)
canvas.on(selection:cleared`, function(e) {/*** your code **/}