如何使用 FabricJS 设置文本框的填充?
在本教程中,我们将学习如何使用 FabricJS 设置文本框的填充。文本框是 FabricJS 提供的各种形状之一。为了创建文本框,我们必须创建一个 `fabric.Textbox` 类的实例并将其添加到画布中。就像我们可以指定画布中文本框对象的位置、颜色、不透明度和尺寸一样,我们也可以设置文本框对象的填充。这可以通过使用 `padding` 属性来完成。
语法
new fabric.Textbox(text: String, { padding : Number }: Object)
参数
text − 此参数接受一个字符串,即我们想要在文本框内显示的文本字符串。
options (可选) − 此参数是一个对象,它为我们的文本框提供了额外的自定义选项。使用此参数,可以更改与对象相关的许多属性,例如颜色、光标、笔划宽度等等,其中 `padding` 就是一个属性。
选项键
padding − 此属性接受一个数字值。分配的值决定了文本框对象与其控制边界之间的距离。
示例 1
不使用填充时的默认外观
让我们看一个代码示例,该示例显示在不使用 `padding` 属性时文本框对象的外观。我们可以看到,对象与其周围的控制边界之间没有空格。这意味着文本框与其控制边界之间没有填充。
<!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 when padding is not used</h2> <p>You can select the textbox to see there is no space between the object and its controlling borders</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("Keep a smile on your face. Keep a spring in your step.", { left: 110, top: 45, fill: "orange", stroke: "green", width: 400, }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>
示例 2
传递padding属性作为键
在这个例子中,我们传递 `padding` 属性作为键,其值为 7。这表示文本框对象与其所有控制边界之间将有 7px 的距离。
<!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 padding property as key</h2> <p>You can select the textbox to see the padding between the object and its controlling borders</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("Keep a smile on your face. Keep a spring in your step.", { left: 110, top: 45, fill: "orange", stroke: "green", width: 400, padding: 7, backgroundColor: "#f5f5dc", }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>
广告