在本教程中,我们将学习如何使用 FabricJS 将 Line 对象在绘制对象堆栈中向下移动一步。 Line 元素是 FabricJS 中提供的基本元素之一。它用于创建直线。由于线元素在几何上是一维的并且不包含内部,因此它们永远不会被填充。我们可以通过创建 fabric.Line 实例来创建线条对象,指定线条的 x 和 y 坐标并将其添加到画布中。为了将 Line 对象在绘制对象堆栈中向下移动一步,我们使用 sendBackwards 方法。
语法
sendBackwards(intersecting: Boolean): fabric.Object
参数
使用sendBackwards方法
示例
让我们看一个代码示例查看使用 sendBackwards 方法时的输出。 sendBackwards 方法将对象在绘制对象堆栈中向下移动一步。在本例中,使用 sendBackwards 方法,line2 在 line1 之后发送。
<!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 sendBackwards method</h2> <p> You can see that line2 (red) has been moved down 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 sendBackwards method line2.sendBackwards(); </script> </body> </html>
使用 sendBackwards 方法并启用三个对象并启用交集键
示例
在此示例中,我们使用了三个线条对象,即 line1、line2 和 line3。尽管它们已按照数字顺序添加到画布中,但 line3 显然位于 line1 后面。这是因为我们使用了启用了交集键的 sendBackwards 方法,该方法将 line3 发送到其下一个较低的相交对象(即 line1)后面。 p>
<!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 sendBackwards method with three objects and intersection key enabled</h2> <p> You can see that the green line Now lies behind the blue line which is line number 1 </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 sendBackwards method line3.sendBackwards(true); </script> </body> </html>
以上就是FabricJS – 如何将 Line 对象在绘制对象堆栈中向下移动一步?的详细内容,更多请关注编程之家其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。