在本教程中,我们将学习如何使用 fabricjs 从左侧设置椭圆的位置。椭圆形是 fabricjs 提供的各种形状之一。为了创建一个椭圆,我们将创建一个 fabric.ellipse 类的实例并将其添加到画布中。我们可以通过改变椭圆对象的位置、不透明度、描边及其尺寸来操纵椭圆对象。可以使用 left 属性更改从左侧开始的位置。
语法new fabric.ellipse( { left: number }: object)
参数选项(可选)- 此参数是一个对象 为我们的椭圆提供额外的定制。使用此参数可以更改与 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 an ellipse from left using fabricjs</h2> <p>this is the default position, as 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"); // initiate an ellipse instance var ellipse = new fabric.ellipse({ fill: "white", rx: 80, ry: 50, stroke: "black", strokewidth: 5, }); // adding it to the canvas canvas.add(ellipse); 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>how to set the position of ellipse from left using fabricjs?</h2> <p>notice that the circle is placed 135px away from the left, since we have used the <b>left</b> property with a custom value.</p> <canvas id="canvas"></canvas> <script> // initiate a canvas instance var canvas = new fabric.canvas("canvas"); // initiate an ellipse instance var ellipse = new fabric.ellipse({ left: 135, fill: "white", rx: 80, ry: 50, stroke: "black", strokewidth: 5, }); // adding it to the canvas canvas.add(ellipse); canvas.setwidth(document.body.scrollwidth); canvas.setheight(250); </script> </body></html>
以上就是如何使用 fabricjs 设置椭圆从左侧的位置?的详细内容。