如何使用 FabricJS 设置文本框的宽度?
在本教程中,我们将学习如何使用 FabricJS 设置文本框的宽度。我们可以自定义、拉伸或移动文本框中编写的文本。为了创建文本框,我们将必须创建一个 fabric.Textbox 类的实例并将其添加到画布中。但是,文本框的基本属性之一是宽度,它指定文本框的水平宽度。
语法
new fabric.Textbox(text: String, { width: Number }: Object)
参数
text − 此参数接受一个字符串,即我们希望在文本框内显示的文本字符串。
options (可选) − 此参数是一个对象,它为我们的文本框提供了额外的自定义选项。使用此参数,可以更改与对象相关的属性,例如颜色、光标、笔划宽度以及许多其他属性,其中width 是一个属性。
选项键
width − 此属性接受一个数字值。分配的值决定了文本框的宽度。
示例 1
默认行为或未指定width 属性时的行为
让我们看一个代码示例,了解当未指定width 属性时对象的行为。因为没有指定宽度,所以每个单词都被视为新的一行。文本框的高度会根据行的换行自动调整。
<!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 or when width property is not specified</h2> <p>You can see that each word is treated as a new line since the width hasn't been specified</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("All generalizations are false, including this one.", { left: 50, top: 45, fill: "orange", stroke: "green", }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>
示例 2
将width 属性作为键传递
在此示例中,我们为width 属性分配了一个值。在这种情况下,我们手动为文本框指定了一个水平宽度,因此行将相应地进行调整。
<!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 width property as key</h2> <p>You can see that the horizontal width now has a fixed value of 400</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("All generalizations are false, including this one.", { left: 50, top: 45, fill: "orange", stroke: "green", width: 400, }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>
广告