Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Fabric.js有一个非常酷的方面,默认情况下,它允许所有对象都是“可选择的”,这意味着它们可以被拖动、调整大小和旋转。但是,我希望它们只能拖动,不能调整大小或旋转。这可能吗?如果需要,我不介意与源代码混在一起,这比自己重新实现要好。
没关系,我在这里找到了答案:http: //fabricjs.com/customization/
这是做到这一点的线
canvas.item(0).hasControls = false;
在创建时将以下选项传递给对象:
hasBorders: false hasControls: false hasRotatingPoint: false