如何使用 FabricJS 从左侧设置圆形的位置?
在本教程中,我们将学习如何使用 FabricJS 从左侧设置圆形的位置。圆形是 FabricJS 提供的各种形状之一。为了创建圆形,我们必须创建 fabric.Circle 类的实例并将其添加到画布中。我们可以通过更改其位置、不透明度、描边以及尺寸来操作圆形对象。可以通过使用 left 属性更改其左侧的位置。
语法
new fabric.Circle( { left: Number }: Object)
参数
options (可选) - 此参数是一个对象,它为我们的圆形提供了额外的自定义选项。使用此参数,可以更改与对象相关的属性,例如颜色、光标、描边宽度以及许多其他属性,其中 left 是一个属性。
选项键
left - 此属性接受一个数字,用于设置对象左侧的位置。该值决定了对象将放置在左侧多远。
示例 1
圆形对象的默认放置
让我们看一个代码示例来了解当圆形对象的位置未更改时,其在画布中的默认放置。
<!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>Setting the position of Circle from left using FabricJS</h2> <p>This is the default placement of the circle. Here we have not used the <b>left</b> property. </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); var circle = new fabric.Circle({ fill: "white", radius: 100, stroke: "yellow", strokeWidth: 3 }); // Adding it to the canvas canvas.add(circle); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
示例 2
将 left 属性作为键传递
在此示例中,我们使用自定义值分配了 left 属性。由于它接受数字,因此必须为其分配一个数值,该数值将表示其左侧的位置。
<!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>Setting the position of Circle from left using FabricJS</h2> <p>Here we have used the <b>left</b> property and assigned it a custom value to set the position of the circle from left. </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); var circle = new fabric.Circle({ left: 115, fill: "white", radius: 100, stroke: "yellow", strokeWidth: 3, }); // Adding it to the canvas canvas.add(circle); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
广告