在本教程中,我们将学习如何使用 FabricJS 水平翻转 Rectangle 对象。矩形是 FabricJS 提供的各种形状之一。为了创建一个矩形,我们必须创建一个 Fabric.Rect 类的实例并将其添加到画布中。我们可以使用 flipX 属性水平翻转矩形对象。
new fabric.Rect({ flipX: Boolean }: Object)
选项(可选) - 此参数是一个提供额外自定义的对象到我们的矩形。使用此参数,可以更改与以 FlipX 为属性的对象相关的颜色、光标、描边宽度等属性。
flipX - 此属性接受一个布尔值,该值允许我们水平翻转对象。
将 flipX 作为具有“false”值的键进行传递
让我们看一个代码示例,它向我们展示了 FabricJS 中矩形对象的默认方向。由于我们向 flipX 属性传递了 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>Passing flipX as key with a False value</h2> <p>You can see that the object is not flipped horizontally</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 rectangle object var rect = new fabric.Rect({ left: 125, top: 90, width: 170, height: 70, borderColor: "purple", borderScaleFactor: 3, flipX: false, }); // Create gradient fill rect.set( "fill", new fabric.Gradient({ type: "linear", coords: { x1: 0, y1: 0, x2: 50, y2: 0 }, colorStops: [ { offset: 0, color: "pink" }, { offset: 1, color: "blue" }, ], }) ); // Add it to the canvas canvas.add(rect); </script> </body> </html>
将 flipX 属性作为具有“true”值的键传递
在此示例中,我们有一个宽度为 170、高度为 70 且具有水平线性渐变填充的矩形对象。当我们将 FlipX 属性应用于矩形对象时,它会水平翻转,因此我们看到渐变也翻转了。
<!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 the flipX property as key with a True value</h2> <p>You can see now that the object has flipped horizontally</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 rectangle object var rect = new fabric.Rect({ left: 125, top: 90, width: 170, height: 70, borderColor: "purple", borderScaleFactor: 3, flipX: true, }); // Create gradient fill rect.set( "fill", new fabric.Gradient({ type: "linear", coords: { x1: 0, y1: 0, x2: 50, y2: 0 }, colorStops: [ { offset: 0, color: "pink" }, { offset: 1, color: "blue" }, ], }) ); // Add it to the canvas canvas.add(rect); </script> </body> </html>
以上是如何使用 FabricJS 水平翻转矩形?的详细内容。更多信息请关注PHP中文网其他相关文章!