在本教程中,我们将使用 FabricJs 创建一个具有背景颜色的文本框。我们可以自定义、拉伸或移动文本框中写入的文本。我们还可以使用诸如fontSize、fontFamily、fontStyle、fontWeight 等属性来自定义文本本身。为了创建文本框,我们必须创建fabric.Textbox 的实例em> 类并将其添加到画布中。 backgroundColor 属性允许我们为对象的背景分配颜色,并且文本框的形状为矩形。
new fabric.Textbox(text: String, { backgroundColor: String }: Object)
text - 此参数接受一个String ,这是我们要使用的文本字符串。想要在我们的文本框中显示。
选项(可选) - 此参数是一个对象,它提供了额外的自定义我们的文本框。使用此参数,可以更改与 backgroundColor 为属性的文本框相关的颜色、光标、描边宽度等属性以及许多其他属性。
backgroundColor - 此属性接受一个 String 值,该值决定背景颜色。
将backgroundColor属性作为带有十六进制值的键传递
让我们看一个代码示例,使用十六进制颜色值将背景颜色分配给我们的文本框对象。在此示例中,我们使用了十六进制颜色代码“#ffe4e1”,它是非常浅的红色阴影。
<!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 backgroundColor property as key with a hexadecimal value</h2> <p>You can see that the background colour is a very light shade of red.</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("Details matter, it's worth waiting to get it right.", { backgroundColor: "#ffe4e1", width: 400, top: 70, left: 110, }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>
将backgroundColor属性作为带有rgba值的键传递
我们可以使用RGBA值,而不是十六进制颜色代码,这代表 - 红色、绿色、蓝色和阿尔法。 alpha 参数指定颜色的不透明度。在此示例中,我们使用了 rgba 值 (0,206,209,0.4),它是不透明度为 0.4 的深绿松石色。
<!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 backgroundColor property as key with an RGBA value</h2> <p>You can see that the background colour is a dark turquoise colour with 0.4 opacity.</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("Details matter, it's worth waiting to get it right.", { backgroundColor: "rgba(0,206,209, 0.4)", width: 400, top: 70, left: 110, }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>
以上是如何使用 FabricJS 创建带有背景颜色的文本框?的详细内容。更多信息请关注PHP中文网其他相关文章!