2023如何使用 FabricJS 设置椭圆的旋转角度?

 所属分类:web前端开发

 浏览:94次-  评论: 0次-  更新时间:2023-09-13
描述:更多教程资料进入php教程获得。 在本教程中,我们将使用 Fabr...
更多教程资料进入php教程获得。

如何使用 FabricJS 设置椭圆的旋转角度?

在本教程中,我们将使用 FabricJS 设置椭圆的旋转角度。椭圆形是 FabricJS 提供的各种形状之一。为了创建一个椭圆,我们必须创建一个 Fabric.Ellipse 类的实例并将其添加到画布中。 FabricJS 中的角度属性定义了对象的 2D 旋转角度。我们还有 centeredRotation 属性,它允许我们使用椭圆的中心点作为变换的原点。

语法

new fabric.Ellipse({ angle: Number, centeredRotation: Boolean }: Object)

参数

  • 选项(可选)- 此参数是一个对象 为我们的椭圆提供额外的定制。使用此参数可以更改与画布相关的颜色、光标、描边宽度和许多其他属性,其中角度和centeredRotation是属性。

选项键
  • 角度 - 此属性接受数字 指定椭圆的旋转角度(以度为单位)。

  • centeredRotation - 这属性接受一个布尔值,该值确定椭圆的中心是否是变换的原点。

示例 1

传递 angle 作为具有自定义值的键,并禁用椭圆的居中旋转

让我们举个例子,在 FabricJS 中设置椭圆的旋转角度。负角度指定逆时针方向,而正角度指定顺时针方向。由于我们为centeredRotation分配了一个“false”值,因此椭圆将在使用其角点作为旋转中心的同时进行旋转。

<!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 angle of rotation of an Ellipse using FabricJS?</h2>
      <p>Select the object and rotate it. Here we have set the angle of rotation at <b>-40</b></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: 180,
            top: 180,
            rx: 90,
            ry: 50,
            fill: "green",
            stroke: "blue",
            strokeWidth: 2,
            angle: -40,
            centeredRotation: false
         })

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

示例 2

启用椭圆居中旋转

从这个示例中我们可以看出,通过设置 centeredRotation 属性为“true”,我们的椭圆现在使用其中心作为旋转中心。在版本 1.3.4 之前,centeredScalingcenteredRotation 包含在一个名为 centerTransform 的属性中。

<!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 angle of rotation of an Ellipse using FabricJS?</h2>
      <p>Select the object and rotate it. You will notice that the object rotates around its center as we have set the <b>centeredRotation</b> property to True. </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: 180,
            top: 180,
            rx: 90,
            ry: 50,
            fill: "green",
            stroke: "blue",
            strokeWidth: 2,
            angle: -40,
            centeredRotation: true
         });

         // Adding it to the canvas
         canvas.add(ellipse);
         canvas.setWidth(document.body.scrollWidth);
         canvas.setHeight(250);
      </script>
   </body>
</html>
 标签:
积分说明:注册即送10金币,每日签到可获得更多金币,成为VIP会员可免金币下载! 充值积分充值会员更多说明»

讨论这个素材(0)回答他人问题或分享使用心得奖励金币

〒_〒 居然一个评论都没有……

表情  文明上网,理性发言!