在本教學中,我們將使用 FabricJs 建立一個具有背景色的圓形。圓形是 FabricJS 提供的各種形狀之一。為了創建一個圓圈,我們必須創建一個 Fabric.Circle 類別的實例並將其添加到畫布中。 backgroundColor 屬性允許我們為物件的背景指定顏色。它是方形容器(圓圈所在的位置)的顏色。
new fabric.Circle({ backgroundColor: String }: Object)
#選項(可選) - 此參數是一個物件 為我們的物件提供額外的客製化。使用此參數,可以變更與 Circle 相關的屬性,例如顏色、遊標、描邊寬度和許多其他屬性,其中 backgroundColor 是其屬性。
#backgroundColor## - 此屬性接受String 決定物件背景的顏色。該值可以是十六進制值、rgba 值或只是我們希望背景顏色的顏色名稱。
將backgroundColor 屬性作為具有十六進位值的鍵傳遞
讓我們看一個使用十六進制顏色值向圓形物件分配背景顏色的範例。在此範例中,我們使用了十六進位顏色代碼#d0db61,它是深卡其色。
<!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 circle with a background colour using FabricJS</h2> <p>Notice the dark-khaki background around the circle. It appears as we have applied the <b>backgroundColor</b> property and assigned it a Hex color code. </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); var cir = new fabric.Circle({ left: 215, top: 100, radius: 50, fill: "#74c365", stroke: "#00b7eb", strokeWidth: 2, backgroundColor: "#d0db61", }); // Adding it to the canvas canvas.add(cir); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>範例2
將backgroundColor 屬性作為帶有rgba 值的鍵傳遞
我們可以使用RGBA (紅色、藍色、綠色和alpha)值而不是十六進位顏色代碼。 alpha 參數指定顏色的不透明度。在此範例中,我們使用了 rgba 值 (255,0,0,0.7),它是不透明度為 0.7 的紅色。
<!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 circle with a background colour using FabricJS</h2> <p>Notice the orange-red background around the circle. Here we have used the <b>backgroundColor</b> property and assigned it an 'rgba' value. </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); var cir = new fabric.Circle({ left: 215, top: 100, radius: 50, fill: "green", stroke: "blue", strokeWidth: 2, backgroundColor: "rgba(255,0,0,0.7)", }); // Adding it to the canvas canvas.add(cir); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
以上是如何使用 FabricJS 建立一個帶有背景顏色的圓形?的詳細內容。更多資訊請關注PHP中文網其他相關文章!