如何使用 FabricJS 从左侧设置椭圆的位置?


在本教程中,我们将学习如何使用 FabricJS 从左侧设置椭圆的位置。椭圆是 FabricJS 提供的各种形状之一。为了创建椭圆,我们将创建一个 fabric.Ellipse 类的实例并将其添加到画布中。我们可以通过更改其位置、不透明度、描边以及尺寸来操作椭圆对象。可以通过使用 left 属性来更改其左侧位置。

语法

new fabric.Ellipse( { left: Number }: Object)

参数

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

选项键

  • left - 此属性接受一个 数字,用于设置对象的左侧位置。该值决定了对象将放置在左侧多远。

示例 1

椭圆对象的默认放置

让我们看一个示例来了解当椭圆对象的位置未更改时,其在画布中的默认放置。

<!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 the position of an Ellipse from left using FabricJS</h2>
      <p>This is the default position, as we have not used the <b>left</b> property. </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({
            fill: "white",
            rx: 80,
            ry: 50,
            stroke: "black",
            strokeWidth: 5,
         });

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

示例 2

left 属性作为键传递

在此示例中,我们使用自定义值分配了 left 属性。由于它接受一个 数字,因此您必须为其分配一个数值,该数值将表示其相对于左侧的位置。

<!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 position of Ellipse from left using FabricJS?</h2>
      <p>Notice that the circle is placed 135px away from the left, since we have used the <b>left</b> property with a custom value.</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: 135,
            fill: "white",
            rx: 80,
            ry: 50,
            stroke: "black",
            strokeWidth: 5,
         });

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

更新于: 2022年5月25日

145 次浏览

开启你的 职业生涯

通过完成课程获得认证

立即开始
广告

© . All rights reserved.