FabricJS – 如何在移动线条时设置其边框不透明度?
在本教程中,我们将学习如何使用 FabricJS 在移动线条时设置其边框不透明度。线条元素是 FabricJS 中提供的基本元素之一。它用于创建直线。由于线条元素在几何上是一维的并且不包含内部,因此它们永远不会被填充。我们可以通过创建 fabric.Line 实例、指定线条的 x 和 y 坐标并将其添加到画布来创建线条对象。为了在画布中移动线对象时更改其边框的不透明度,我们使用 borderOpacityWhenMoving 属性。
语法
new fabric.Line(points: Array, { borderOpacityWhenMoving: Number }: Object)
参数
points − 此参数接受一个 Array 点,该点确定 (x1, y1) 和 (x2, y2) 值,这些值分别是线的起点和终点的 x 轴和 y 轴坐标。
options(可选)− 此参数是一个 Object,可为我们的线提供额外的自定义。使用此参数原点、描边宽度和许多其他属性可以更改与对象相关的属性,其中 borderOpacityWhenMoving 是该对象的一个属性。
选项键
borderOpacityWhenMoving − 此属性接受一个 Number,该数字指定我们希望在移动对象时边框的不透明度。这里 1 表示完全不透明,0 表示透明。默认值为 0.4。
显示 borderOpacityWhenMoving 属性的默认行为
示例
让我们看一个代码示例,该示例显示了 boderOpacityWhenMoving 属性的默认行为。当我们选择线条对象并将其在画布上移动时,选择边框的不透明度会从 1(完全不透明)更改为 0.4,这使其看起来有点半透明。
<!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>Displaying the default behaviour of borderOpacityWhenMoving property</h2> <p> You can select the line object and drag it around to see that the border opacity changes from being fully opaque(1) to being translucent(0.4) </p> <canvas id="canvas"></canvas> <script> // 启动一个canvas实例 var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // Initiate a Line object var line = new fabric.Line([200, 100, 100, 40], { stroke: "blue", strokeWidth: 20, }); // 将其添加到画布 canvas.add(line); </script> </body> </html>
将 borderOpacityWhenMoving 作为键传递
示例
让我们看一个代码示例,为 borderOpacityWhenMoving 属性分配一个值。在本例中,我们将值指定为 0。这告诉我们,当我们移动线条时,边框不透明度将变为 0,并且不可见。
<!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 borderOpacityWhenMoving as key</h2> <p> You can select the line object and drag it around to see that the borders are no longer visible when being moved </p> <canvas id="canvas"></canvas> <script> // 启动一个canvas实例 var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // Initiate a Line object var line = new fabric.Line([200, 100, 100, 40], { stroke: "blue", strokeWidth: 20, borderOpacityWhenMoving: 0, }); // 将其添加到画布 canvas.add(line); </script> </body> </html>