FabricJS – 如何将线条对象在绘制对象的堆栈中向上移动一步?
在本教程中,我们将学习如何使用 FabricJS 将线条对象在绘制对象的堆栈中向上移动一步。线条元素是 FabricJS 提供的基本元素之一。它用于创建直线。由于线条元素在几何上是一维的并且不包含内部,因此它们永远不会被填充。我们可以通过创建fabric.Line的实例,指定线条的 x 和 y 坐标并将其添加到画布上来创建线条对象。为了将线条对象在绘制对象的堆栈中向上移动一步,我们使用bringForward方法。
语法
bringForward(intersecting: Boolean): fabric.Object
参数
Intersecting − 此参数接受一个布尔值,当分配“true”值时,将对象发送到下一个上层相交对象的前面。如果为“false”值,则通常将对象在堆栈中的下一个对象上移一步。此参数是可选的。
使用bringForward方法
示例
让我们看一个代码示例,以查看使用bringForward方法时的输出。bringForward方法将对象在绘制对象的堆栈中向上移动一步。在这种情况下,在使用bringForward方法时,line1 会发送到 line2 的上方。
<!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>Using bringForward method</h2> <p> You can see that line1 (blue) has been moved up in the stack of drawn objects </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // Initiate a Line object var line1 = new fabric.Line([200, 100, 100, 40], { stroke: "blue", strokeWidth: 20, }); // Initiate another Line object var line2 = new fabric.Line([200, 70, 70, 40], { stroke: "red", strokeWidth: 20, }); // Add both to the canvas canvas.add(line1); canvas.add(line2); // Using bringForward method line1.bringForward(); </script> </body> </html>
使用bringForward方法和三个对象以及启用的交集键
示例
在此示例中,我们使用了三个线条对象,即line1、line2 和 line3。尽管它们已根据其数字顺序添加到画布中,但 line1 显然位于line3之上。这是因为我们使用了启用了交集键的bringForward方法,该方法将 line1 发送到其下一个上层相交对象(即line3)的顶部。
<!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>Using bringForward method with three objects and intersection key enabled</h2> <p> You can see that the blue line now lies above the green line which is line number 3 </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // Initiate a Line object var line1 = new fabric.Line([200, 100, 100, 40], { stroke: "blue", strokeWidth: 20, }); // Initiate another Line object var line2 = new fabric.Line([500, 70, 400, 40], { stroke: "red", strokeWidth: 20, }); // Initiate another Line object var line3 = new fabric.Line([200, 30, 30, 90], { stroke: "green", strokeWidth: 20, }); // Add them all to the canvas canvas.add(line1); canvas.add(line2); canvas.add(line3); // Using bringForward method line1.bringForward(true); </script> </body> </html>
广告