如何使用 FabricJS 禁用矩形的居中旋转?
在本教程中,我们将学习如何使用 FabricJS 禁用矩形的居中旋转。矩形是 FabricJS 提供的各种形状之一。为了创建矩形,我们将必须创建一个fabric.Rect类的实例并将其添加到画布。默认情况下,FabricJS 中的所有对象都使用其中心作为旋转点。但是,我们可以使用centeredRotation属性更改此行为。
语法
new fabric.Rect({ centeredRotation: Boolean }: Object)
参数
选项(可选) - 此参数是一个对象,它为我们的矩形提供额外的自定义。使用此参数,可以更改与对象的属性相关的属性,例如颜色、光标、笔划宽度以及许多其他属性,其中centeredRotation是一个属性。
选项键
centeredRotation - 此属性接受一个布尔值,允许我们控制对象在通过控件旋转时是否使用中心点作为其变换的原点。其默认值为 True。
示例 1
FabricJS 中矩形旋转的默认行为
让我们来看一个代码示例,它描述了矩形对象的默认行为。由于centeredRotation属性默认为 true,因此矩形对象使用其中心作为旋转点。
<!DOCTYPE html> <html> <head> <!-- Adding the Fabric JS Library--> <script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/510/fabric.min.js"></script> </head> <body> <h2>Default behaviour of rotation of Rectangle in FabricJS</h2> <p>Click on the rectangle and rotate it. You will notice that the object rotates around its center, which is the default behaviour.</p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // Initiate a rectangle object var rect = new fabric.Rect({ left: 125, top: 90, width: 170, height: 70, fill: "#cf1020", borderColor: "black", borderScaleFactor: 3, }); // Add it to the canvas canvas.add(rect); </script> </body> </html>
示例 2
将 centeredRotation 键的值设置为“false”
既然我们已经看到了默认行为,让我们来看一个代码示例,以了解当 centeredRotation 属性赋值为 False 时会发生什么。
<!DOCTYPE html> <html> <head> <!-- Adding the Fabric JS Library--> <script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/510/fabric.min.js"></script> </head> <body> <h2>Passing centeredRotation key with the value as “false”</h2> <p>Click on the rectangle and rotate it to see the changed center of rotation</p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // Initiate a rectangle object var rect = new fabric.Rect({ left: 125, top: 90, width: 170, height: 70, fill: "#cf1020", borderColor: "black", borderScaleFactor: 3, centeredRotation: false, }); // Add it to the canvas canvas.add(rect); </script> </body> </html>
广告