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


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

语法

new fabric.Circle({ 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>Setting dash pattern of controlling corners of circle using FabricJS</h2>
      <p>Select the object and notice its controlling corners. Here we have not applied the <b>cornerDashArray</b> property, hence there is no dashed pattern. </p>
      <canvas id="canvas"></canvas>
   
      <script>
         // Initiate a canvas instance
         var canvas = new fabric.Canvas("canvas");
         var cir = new fabric.Circle({
            left: 215,
            top: 100,
            fill: "white",
            radius: 50,
            stroke: "#c154c1",
            strokeWidth: 5,
            borderColor: "#daa520",
            cornerColor: "rgb(255,20,147)"
         });

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

示例2

将cornerDashArray属性作为键传递

在这个例子中,我们将`cornerDashArray`属性的值设置为[1,2,1]。这意味着将创建一个虚线样式,其中包含一条1px长的线段,然后是一个2px的间隙,然后再次是一条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>Setting dash pattern of controlling corners of circle using FabricJS</h2>
      <p>Select the object and notice the dashed pattern of its controlling corners. Here we have applied the <b>cornerDashArray</b> property and assigned it an array [1,2,1]. </p>
      <canvas id="canvas"></canvas>

      <script>
         // Initiate a canvas instance
         var canvas = new fabric.Canvas("canvas");
         var cir = new fabric.Circle({
            left: 215,
            top: 100,
            fill: "white",
            radius: 50,
            stroke: "#c154c1",
            strokeWidth: 5,
            borderColor: "#daa520",
            cornerColor: "rgb(255,20,147)",
            cornerDashArray: [1, 2, 1]
         });

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

更新于:2022年5月25日

124 次浏览

启动你的职业生涯

完成课程获得认证

开始学习
广告