如何使用 FabricJS 设置 Text 文本行的背景颜色?

fabricjsjavascripthtml5 canvas

在本教程中,我们将学习如何使用 FabricJS 设置 Text 文本行的背景颜色。我们可以通过添加 fabric.Text 实例在画布上显示文本。它不仅允许我们移动、缩放和更改文本的尺寸,而且还提供其他功能,例如文本对齐、文本装饰、行高,这些功能可分别通过属性 textAlign、underline 和 lineHeight 获取。类似地,我们也可以使用 textBackgroundColor 属性设置文本行的背景颜色。

语法

new fabric.Text(text: String , { textBackgroundColor : String }: Object)

参数

  • text − 此参数接受 String,即我们想要显示的文本字符串。

  • options (可选) − 此参数是一个 Object,可为我们的文本提供额外的自定义。使用此参数,可以更改与对象相关的颜色、光标、边框宽度和许多其他属性,其中 textBackgroundColor 是该对象的一个​​属性。

选项键

  • textBackgroundColor − 此属性接受 String 值,允许我们设置文本行的背景颜色。

示例 1

将 textBackgroundColor 属性作为键传递,并使用十六进制值

让我们看一个代码示例,使用十六进制颜色值为我们的 Triangle 对象分配背景颜色。在此示例中,我们使用了十六进制颜色代码 #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> // 启动一个canvas实例 var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // 初始化一个 text 文本对象 var text = new fabric.Text("Add sample
text here."
, { width: 300, left: 60, top: 70, fill: "green", textBackgroundColor: "#ebdef0" }); // 将其添加到画布 canvas.add(text); </script> </body> </html>

示例 2

将 textBackgroundColor 属性作为带有 rgba 值的键传递

我们可以使用 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> // 启动一个canvas实例 var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // 初始化一个 text 文本对象 var text = new fabric.Text("Add sample
text here."
, { width: 300, left: 60, top: 70, fill: "green", textBackgroundColor: "rgba(255,20,147,0.2)" }); // 将其添加到画布 canvas.add(text); </script> </body> </html>

相关文章