fabric.js 5.3.0版本,多选元素时禁止旋转
手动设置hasControls为false;
fabricCanvas.on('selection:created', function (options) {
console.log(options)
if (options.selected?.length < 2) {
// 被选中的对象数据
selectedObject.value = options.selected[0];
console.log('选中对象created:', selectedObject.value);
}
forbidStretch(options.selected?.length > 1);
})
fabricCanvas.on('selection:updated', function (options) {
console.log(options)
if (options.selected?.length < 2) {
// 被选中的对象数据
selectedObject.value = options.selected[0];
console.log('选中对象updated:', selectedObject.value);
}
forbidStretch(options.selected?.length > 1);
})
const forbidStretch = (isGroup = false) => {
fabric.Object.prototype.hasControls = !isGroup;
};
5 回答4.9k 阅读✓ 已解决
4 回答3.2k 阅读✓ 已解决
2 回答4.8k 阅读✓ 已解决
4 回答4.4k 阅读✓ 已解决
4 回答1.9k 阅读✓ 已解决
2 回答2.7k 阅读✓ 已解决
2 回答2.6k 阅读✓ 已解决
把hasRotatingPoint设置成false