使用 FabricJS 设置文本行背景颜色
在本教程中,我们将学习如何使用 FabricJS 设置文本行的背景颜色。我们可以通过添加 fabric.Text 实例来在画布上显示文本。它不仅允许我们移动、缩放和更改文本的尺寸,还提供其他功能,例如文本对齐、文本修饰、行高,这些功能分别可以通过 textAlign、underline 和 lineHeight 属性获得。同样,我们也可以使用 textBackgroundColor 属性设置文本行的背景颜色。
语法
new fabric.Text(text: String , { textBackgroundColor : String }: Object)
参数
text − 此参数接受一个字符串,即我们要显示的文本字符串。
options (可选) − 此参数是一个对象,它为我们的文本提供额外的自定义选项。使用此参数,可以更改与对象的许多属性相关的颜色、光标、边框宽度等,其中 textBackgroundColor 是一个属性。
选项键
textBackgroundColor − 此属性接受一个字符串值,允许我们设置文本行的背景颜色。
示例 1
使用十六进制值作为 textBackgroundColor 属性的键
让我们来看一个代码示例,使用十六进制颜色值来为我们的三角形对象分配背景颜色。在这个例子中,我们使用了十六进制颜色代码 #ebdef0,它是一种淡紫色。
<!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 textBackgroundColor property as key with a hexadecimal value</h2> <p>You can see the background colour of the text lines</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 text object var text = new fabric.Text("Add sample
text here.", { width: 300, left: 60, top: 70, fill: "green", textBackgroundColor: "#ebdef0" }); // Add it to the canvas canvas.add(text); </script> </body> </html>
示例 2
使用 rgba 值作为 textBackgroundColor 属性的键
我们可以使用 RGBA 值而不是十六进制颜色代码,它代表:红色、绿色、蓝色和 alpha。alpha 参数指定颜色的不透明度。在这个例子中,我们使用了 rgba 值 (255,20,147,0.8),它是一种具有 0.8 不透明度的粉红色。
<!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 textBackgroundColor property as key with a RGBA value</h2> <p>You can see the new background colour of the text lines</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 text object var text = new fabric.Text("Add sample
text here.", { width: 300, left: 60, top: 70, fill: "green", textBackgroundColor: "rgba(255,20,147,0.2)" }); // Add it to the canvas canvas.add(text); </script> </body> </html>
广告