如何使用 FabricJS 创建带有边框颜色的文本框?


在本文中,我们将学习如何使用 FabricJS 创建一个带有边框颜色的文本框。我们可以自定义、拉伸或移动文本框中的文本。我们还可以使用诸如fontSize、fontFamily、fontStyle、fontWeight 等属性来自定义文本本身。为了创建一个文本框,我们必须创建一个fabric.Textbox 类的实例并将其添加到画布中。FabricJS 提供的一个属性是borderColor,它允许我们在对象处于活动状态时操作边框的颜色。

语法

new fabric.Textbox(text: String, { borderColor: String }: Object)

参数

  • text − 此参数接受一个字符串,即我们希望在文本框内显示的文本字符串。

  • options (可选) − 此参数是一个对象,它为我们的文本框提供额外的自定义选项。使用此参数,可以更改与对象相关的许多属性,其中borderColor 就是一个属性,例如颜色、光标、描边宽度等等。

选项键

  • borderColor − 此属性接受一个字符串,指定文本框对象被选中时的边框颜色。其默认值为 rgb(178,204,255)。

示例 1

使用字符串值传递 borderColor 键

让我们来看一个代码示例,说明如何为borderColor 属性赋值。我们将值“red”赋给borderColor 键,这有助于在选中文本框对象时创建红色边框。

<!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 borderColour key with a String value</h2>
   <p>You can select the textbox to see the red border colour</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("If you don’t love it, you’re going to fail.", {
         backgroundColor: "#b0e0e6",
         width: 400,
         top: 70,
         left: 110,
         angle: 15,
         borderColor: "red",
      });

      // Add it to the canvas
      canvas.add(textbox);
   </script>
</body>
</html>

示例 2

borderColor 键传递 RGBA 值

除了传递简单的颜色名称作为字符串之外,我们还可以使用RGBA 值,其组件指定红色、绿色、蓝色和 Alpha 的数量,其中 Alpha 表示不透明度。在这个例子中,我们使用了rgb(164,0, 0),这是深红色的 RGB 值。

<!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 an RGBA value to the borderColor key</h2>
   <p>You can select the textbox to see the border colour added using the rgba value</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("If you don’t love it, you’re going to fail.", {
         backgroundColor: "#b0e0e6",
         width: 400,
         top: 70,
         left: 110,
         angle: 15,
         borderColor: "rgb(164,0,0)",
      });

      // Add it to the canvas
         canvas.add(textbox);
         </script>
      </body>
</html>

更新于:2022-07-29

741 次浏览

启动你的职业生涯

完成课程获得认证

开始学习
广告