
在本教程中,我们将学习如何使用 FabricJS 从左侧设置圆的位置。圆形是 FabricJS 提供的各种形状之一。为了创建一个圆圈,我们必须创建一个 Fabric.Circle 类的实例并将其添加到画布中。我们可以通过改变圆形对象的位置、不透明度、描边及其尺寸来操纵它。可以使用 left 属性更改从左侧开始的位置。
语法
new fabric.Circle( { left: Number }: Object)
参数
选项(可选) – 此参数是一个对象 为我们的圈子提供额外的定制。使用此参数,可以更改与 left 为属性的对象相关的属性,例如颜色、光标、描边宽度和许多其他属性。
ul>
选项键
左 – 此属性接受Number 设置对象的左侧位置。该值确定对象将放置在距左侧多远的位置。
示例 1
圆形对象的默认放置位置
左手医生开放平台
左医科技医疗智能开放平台
26 查看详情
让我们看一个代码示例,以了解圆形对象在其位置未更改时在画布中的默认位置。
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.
// 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);
示例 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.
// 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);
以上就是如何使用 FabricJS 设置圆从左开始的位置?的详细内容,更多请关注创想鸟其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/534913.html
微信扫一扫
支付宝扫一扫