如何使用 FabricJS 设置矩形的内边距?
在本教程中,我们将学习如何使用 FabricJS 设置矩形的内边距。矩形是 FabricJS 提供的各种形状之一。为了创建矩形,我们必须创建 fabric.Rect 类的实例并将其添加到画布中。
就像我们可以在画布中指定矩形对象的位姿、颜色、不透明度和尺寸一样,我们也可以设置矩形对象的内边距。这可以通过使用 padding 属性来实现。
语法
new fabric.Rect({ padding : Number }: Object)
参数
选项(可选) - 此参数是一个对象,它为我们的矩形提供了额外的自定义功能。使用此参数,可以更改与对象相关的属性,例如颜色、光标、笔触宽度以及许多其他属性,其中 padding 是一个属性。
选项键
padding - 此属性接受一个数字值。分配的值决定了矩形对象与其控制边框之间的距离。
示例 1
不使用 padding 时的默认外观
让我们来看一个代码示例,该示例显示了不使用 padding 属性时矩形对象的外观。正如我们所看到的,对象与其周围的控制边框之间没有间隙。这意味着矩形与其控制边框之间没有内边距。
<!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>Default appearance when padding is not used</h2> <p>You can select the rectangle to see there is no space between the object and its controlling borders.</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: 55, top: 90, width: 170, height: 70, fill: "#ffb347", stroke: "#191970", strokeWidth: 5, }); // Add it to the canvas canvas.add(rect); </script> </body> </html>
示例
将 padding 属性作为键传递
在此示例中,我们将 padding 属性作为键传递,其值为 7。这表示矩形对象与其所有控制边框之间将有 7px 的距离。
<!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 padding property as key</h2> <p>You can select the rectangle to see the padding between the object and its controlling borders.</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: 55, top: 90, width: 170, height: 70, fill: "#ffb347", stroke: "#191970", strokeWidth: 5, padding: 7, }); // Add it to the canvas canvas.add(rect); </script> </body> </html>
广告