如何使用 FabricJS 设置椭圆控制角的虚线样式?


在本教程中,我们将学习如何使用 FabricJS 实现椭圆控制角的虚线样式。对象的控制角允许我们缩放、拉伸或改变其位置。我们可以通过多种方式自定义控制角,例如为其添加特定颜色、更改其大小等。我们还可以使用`cornerDashArray`属性指定控制角的虚线样式。

语法

new fabric.Ellipse({ cornerDashArray: Array }: Object)

参数

  • options (可选) − 此参数是一个对象,它为我们的椭圆提供了额外的自定义选项。使用此参数可以更改与对象相关的许多属性,例如颜色、光标、笔划宽度等等,其中`cornerDashArray`也是一个属性。

选项键

  • cornerDashArray − 此属性接受一个数组,允许我们指定控制角的虚线样式。例如,如果我们传递一个值为[2,3]的数组,则表示 2px 的虚线和 3px 的间隙,并无限重复此模式。

示例 1

控制角的默认外观

让我们看一段代码,它描述了椭圆对象的控制角的默认外观。由于我们没有使用`cornerDashArray`属性,因此没有显示虚线样式。

<!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>How to set the dash pattern of controlling corners of Ellipse using FabricJS?</h2>
      <p>Select the object and observe the controlling corners. We have not used the <b>cornerDashArray</b> property here. </p>
      <canvas id="canvas"></canvas>

      <script>
         // Initiate a canvas instance
         var canvas = new fabric.Canvas("canvas");

         // Initiate an ellipse instance
         var ellipse = new fabric.Ellipse({
            left: 215,
            top: 100,
            fill: "white",
            rx: 90,
            ry: 50,
            stroke: "#c154c1",
            strokeWidth: 5,
            borderColor: "#daa520",
            cornerColor: "rgb(255,20,147)",
         });

         // Adding it to the canvas
         canvas.add(ellipse);
         canvas.setWidth(document.body.scrollWidth);
         canvas.setHeight(250);
      </script>
   </body>
</html>

示例 2

将`cornerDashArray`属性作为键传递

在这个例子中,我们将值为[1,2,1]传递给`cornerDashArray`属性。这意味着将创建一个虚线样式,其中包含一条 1px 长的线,然后是一个 2px 的间隙,然后再次绘制一条 1px 长的线,之后是一个 1px 的间隙,以此类推。

<!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>How to set the dash pattern of controlling corners of Ellipse using FabricJS</h2>
      <p>Select the object and observe the controlling corners. Here we have used the <b>cornerDashArray</b> property and supplied an array of integers which is why the controlling corners have a dash pattern. </p>
      <canvas id="canvas"></canvas>

      <script>
         // Initiate a canvas instance
         var canvas = new fabric.Canvas("canvas");

         // Initiate an ellipse instance
         var ellipse = new fabric.Ellipse({
            left: 215,
            top: 100,
            fill: "white",
            rx: 90,
            ry: 50,
            stroke: "#c154c1",
            strokeWidth: 5,
            borderColor: "#daa520",
            cornerColor: "rgb(255,20,147)",
            cornerDashArray: [1, 2, 1],
         });

         // Adding it to the canvas
         canvas.add(ellipse);
         canvas.setWidth(document.body.scrollWidth);
         canvas.setHeight(250);
      </script>
   </body>
</html>

更新于:2022年5月25日

116 次查看

启动你的职业生涯

完成课程获得认证

开始学习
广告