如何在使用 FabricJS 时设置文本框中文字的对齐方式?
在本教程中,我们将学习如何在使用 FabricJS 时设置文本框中文字的对齐方式。我们可以自定义、拉伸或移动文本框中编写的文本。为了创建文本框,我们必须创建一个`fabric.Textbox`类的实例并将其添加到画布。同样,我们也可以使用`textAlign`属性设置其文本对齐方式。
语法
new fabric.Textbox(text: String, { textAlign : String }: Object)
参数
text − 此参数接受一个字符串,即我们想要在文本框内显示的文本字符串。
options (可选) − 此参数是一个对象,它为我们的文本框提供额外的自定义选项。使用此参数,可以更改与对象相关的许多属性,例如颜色、光标、边框宽度等等,其中`textAlign`也是一个属性。
选项键
textAlign − 此属性接受一个字符串作为值,允许我们控制文本对齐的可能值。其默认值为左对齐。其他可能的值为“center”(居中),“right”(右对齐),“justify”(两端对齐),“justify-left”(左端对齐),“justify-center”(居中对齐)和“justify-right”(右端对齐),其解释如下:
center − 将文本居中对齐
right − 将文本右对齐
justify − 拉伸文本行,使每一行与文本框的左右边缘距离相等
justify-left − 拉伸文本行,使每一行与文本框的左边缘距离相等
justify-center − 将每一行居中,与文本框的左右边缘距离不等
justify-right − 拉伸文本行,使每一行与文本框的右边缘距离相等
示例 1
文本框对象中文本的默认外观
让我们来看一个代码示例,看看当不使用`textAlign`属性时文本框对象是什么样子。在这种情况下,我们的文本将左对齐。
<!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 appearance of the text in Textbox object</h2> <p>You can see that the text alignment is towards left</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("If you're too open-minded; your brains will fall out.", { width: 400, left: 50, top: 30, fill: "orange", strokeWidth: 2, stroke: "green", }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>
示例 2
将textAlign属性作为键值对传递
在这个例子中,我们将看到为`textAlign`属性赋值是如何改变画布中文本框对象内文本对齐方式的。由于我们传递的值为“right”,因此文本现在将右对齐。
<!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 the textAlign property as key with a value</h2> <p>You can see that the text alignment is towards right</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("If you're too open-minded; your brains will fall out.", { width: 400, left: 50, top: 70, fill: "orange", strokeWidth: 2, stroke: "green", textAlign: "right", }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>