在本教程中,我們將學(xué)習(xí)如何使用 FabricJS 設(shè)置橢圓的水平和垂直半徑。橢圓形是 FabricJS 提供的各種形狀之一。為了創(chuàng)建一個(gè)橢圓,我們必須創(chuàng)建一個(gè) Fabric.Ellipse 類的實(shí)例并將其添加到畫布中。我們可以通過指定橢圓對(duì)象的位置、顏色、不透明度和尺寸來自定義橢圓對(duì)象。然而,最重要的屬性是rx和ry,它們?cè)试S我們指定橢圓的水平和垂直半徑。
語法
new fabric.Ellipse({ rx : Number, ry: Number }: Object)
登錄后復(fù)制
參數(shù)
選項(xiàng)(可選)- 此參數(shù)是一個(gè)對(duì)象 為我們的橢圓提供額外的定制。使用此參數(shù),可以更改與 rx 和 ry 屬性的對(duì)象相關(guān)的顏色、光標(biāo)、描邊寬度和許多其他屬性。
選項(xiàng)鍵
rx – 此屬性接受 數(shù)字值。分配的值確定橢圓對(duì)象的水平半徑。
ry – 該屬性接受 數(shù)字值。分配的值決定橢圓對(duì)象的垂直半徑。
示例 1
rx時(shí)的默認(rèn)外觀/em> 和 ry 未使用
以下代碼顯示了當(dāng) rx 和 時(shí)橢圓對(duì)象將如何出現(xiàn)ry 屬性未被使用。在此示例中,我們可以看到我們使用了填充顏色來發(fā)現(xiàn)橢圓,它是不可見的,因?yàn)槲覀儧]有為其分配水平和垂直半徑。
<!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 horizontal and vertical radius of an Ellipse using FabricJS</h2> <p>Here we are getting a blank output because we have not assigned any horizontal and vertical radius.</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: 115, top: 50, fill: "red", }); // Adding it to the canvas canvas.add(ellipse); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
登錄后復(fù)制
示例 2
將 rx 和 ry 屬性作為鍵傳遞
在此示例中,我們分別向 rx 和 ry 屬性傳遞值 100 和 70。因此,我們的橢圓對(duì)象的水平半徑為 100 像素,垂直半徑為 70 像素。
<!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 horizontal and vertical radius of Ellipse using FabricJS?</h2> <p>Here we have supplied the horizontal and vertical radius, <b>rx</b> and <b>ry</b>. Hence we are getting an ellipse of a definite dimension. </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: 115, top: 50, rx: 100, ry: 70, fill: "red", }); // Adding it to the canvas canvas.add(ellipse); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
登錄后復(fù)制
以上就是如何使用 FabricJS 設(shè)置橢圓的水平和垂直半徑?的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注www.92cms.cn其它相關(guān)文章!