
在本教程中,我们将学习如何使用 FabricJS 从左侧设置圆的位置。圆形是 FabricJS 提供的各种形状之一。为了创建一个圆圈,我们必须创建一个 Fabric.Circle 类的实例并将其添加到画布中。我们可以通过改变圆形对象的位置、不透明度、描边及其尺寸来操纵它。可以使用 left 属性更改从左侧开始的位置。
语法
new fabric.Circle( { left: Number }: Object)参数
选项(可选) - 此参数是一个对象 为我们的圈子提供额外的定制。使用此参数,可以更改与 left 为属性的对象相关的属性,例如颜色、光标、描边宽度和许多其他属性。
ul>左 - 此属性接受Number 设置对象的左侧位置。该值确定对象将放置在距左侧多远的位置。
选项键
示例 1
圆形对象的默认放置位置
让我们看一个代码示例,以了解圆形对象在其位置未更改时在画布中的默认位置。
Setting the position of Circle from left using FabricJS
This is the default placement of the circle. Here we have not used the left property.
示例 2
将 left 属性作为键传递
在此示例中,我们为 left 属性分配一个自定义值。由于它接受数字,因此您必须为其分配一个代表其从左侧开始的位置的数值。
Setting the position of Circle from left using FabricJS
Here we have used the left property and assigned it a custom value to set the position of the circle from left.










