在本教程中,我們將學習如何使用 FabricJS 創建帶有 Circle 對象的畫布。圓形是 FabricJS 提供的各種形狀之一。為了創建一個圓圈,我們必須創建一個 Fabric.Circle 類的實例并將其添加到畫布中。
語法
new fabric.Circle({ radius: Number }: Object)
登錄后復制
參數
選項(可選) – 此參數是一個對象 為我們的對象提供額外的定制。使用此參數,可以更改與半徑為屬性的圓相關的顏色、光標、描邊寬度和許多其他屬性等屬性。
選項鍵
半徑 – 此屬性接受Number 確定圓的半徑。如果我們不指定半徑,圓將不會顯示在畫布上。
示例 1
創建一個實例Fabric.Circle() 并將其添加到我們的畫布
讓我們看一個如何向畫布添加圓形的示例。這里我們創建了一個半徑為 50px 的圓。筆劃屬性表示邊框顏色,筆畫寬度指定其寬度。我們使用天藍色填充我們的對象,其十六進制值為#80daeb。
<!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>Creating a canvas with circle using FabricJS</h2> <p>Here we have created a circle of radius 50px over a canvas. In addition, we have used the <b>fill</b> and <b>stroke</b> properties to color its body and outline. </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); // Creating an instance of the fabric.Circle class var circle = new fabric.Circle({ left: 215, top: 100, radius: 50, fill: "#80daeb", stroke: "#00b7eb", strokeWidth: 2, }); // Adding it to the canvas canvas.add(circle); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
登錄后復制
示例 2
使用 set 方法操作 Circle 對象
在此示例中,我們使用set 方法是值的設置器。任何與描邊、描邊寬度、半徑、縮放、旋轉等相關的屬性都可以使用此方法進行改變。
<!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>Creating a canvas with circle using FabricJS</h2> <p>Here we have used the <b>set</b> method to create a circle of radius 40px and then filled the object with a color. </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); var circle = new fabric.Circle(); canvas.add(circle); // Use set to set the properties circle.set("radius", 40); circle.set("fill", "green"); circle.set({ stroke: "rgba(133, 187, 101, 0.7)", strokeWidth: 4 }); circle.set("left", 50); circle.set("top", 50); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
登錄后復制
以上就是如何使用 FabricJS 創建帶有 Circle 的畫布?的詳細內容,更多請關注www.92cms.cn其它相關文章!