如何使用 FabricJS 禁用文本框的居中旋转?
在本教程中,我们将学习如何使用 FabricJS 禁用文本框的居中旋转。我们可以自定义、拉伸或移动文本框中编写的文本。为了创建文本框,我们必须创建一个 fabric.Textbox 类的实例并将其添加到画布中。默认情况下,FabricJS 中的所有对象都使用其中心作为旋转点。但是,我们可以使用 centeredRotation 属性更改此行为。
语法
new fabric.Textbox(text: String, { centeredRotation: Boolean }: Object)
参数
text − 此参数接受一个字符串,即我们希望在文本框内显示的文本字符串。
options(可选)− 此参数是一个对象,它为我们的文本框提供了额外的自定义选项。使用此参数,可以更改与对象相关的属性,例如颜色、光标、笔划宽度以及许多其他属性,其中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 Textbox in FabricJS</h2> <p>Rotate the textbox to see the default value of centeredRotation</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 textbox object var textbox = new fabric.Textbox("The past does not equal the future.", { backgroundColor: "#ffe5b4", width: 400, top: 70, left: 110, }); // Add it to the canvas canvas.add(textbox); </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>Rotate the textbox 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 textbox object var textbox = new fabric.Textbox("The past does not equal the future.", { backgroundColor: "#ffe5b4", width: 400, top: 70, left: 110, centeredRotation: false, }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>
广告