如何使用 FabricJS 设置文本框 Y 轴的倾斜角度?
在本教程中,我们将学习如何使用 FabricJS 设置文本框 Y 轴的倾斜角度。我们可以自定义、拉伸或移动文本框中编写的文本。为了创建文本框,我们必须创建一个 fabric.Textbox 类的实例并将其添加到画布上。我们的文本框对象可以通过多种方式进行自定义,例如更改其尺寸、添加背景颜色或更改 Y 轴的倾斜角度。我们可以通过使用 skewY 属性来实现这一点。
语法
new fabric.Textbox(text: String, { skewY : Number }: Object)
参数
text − 此参数接受一个字符串,它是我们希望在文本框内显示的文本字符串。
options (可选) − 此参数是一个对象,它为我们的文本框提供了额外的自定义选项。使用此参数,可以更改与对象相关的许多属性,例如颜色、光标、描边宽度等等,其中skewY也是一个属性。
选项键
skewY − 此属性接受一个数字,它决定了对象在 Y 轴上的倾斜角度。
示例 1
当未应用 skewY 属性时
让我们看一个代码示例,了解当未应用 skewY 属性时我们的文本框对象的外观。在这种情况下,我们的文本框对象将不会以任何角度倾斜。
<!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>When the skewY property is not applied</h2> <p>You can see there is no skew by any angle on the textbox by default</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("A smile cures the wounding of a frown.", { backgroundColor: "#fffff0", width: 400, left: 110, top: 70, fill: "violet", strokeWidth: 2, stroke: "blue", textAlign: "center", }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>
示例 2
将 skewY 作为键并为其分配自定义值。
在此示例中,我们将了解如何为 skewY 属性分配数值。传递的值将决定沿 Y 轴的倾斜。
<!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 skewY as key and assigning a custom value to it.</h2> <p>You can see the textbox has been skewed along the y-axis</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("A smile cures the wounding of a frown.", { backgroundColor: "#fffff0", width: 400, left: 110, top: 70, fill: "violet", strokeWidth: 2, stroke: "blue", textAlign: "center", skewY: 30, }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>
广告