在本文中,我們將學(xué)習(xí)如何使用 FabricJS 設(shè)置畫(huà)布上選擇區(qū)域的顏色。我們可以使用selectionColor屬性調(diào)整顏色。
語(yǔ)法
new fabric.Canvas(element: HTMLElement|String, { selectionColor: String }: Object)
登錄后復(fù)制
參數(shù)
元素 – 此參數(shù)是 元素本身,可以使用 document.getElementById() 或 元素本身的 id 派生。 FabricJS 畫(huà)布將在此元素上初始化。
選項(xiàng)(可選) – 此參數(shù)是一個(gè)對(duì)象,它提供對(duì)我們的畫(huà)布進(jìn)行額外的定制。使用此參數(shù),可以更改與畫(huà)布相關(guān)的顏色、光標(biāo)、邊框?qū)挾鹊葘傩砸约霸S多其他屬性,其中selectionColor是我們可以指示選區(qū)顏色的屬性。 SelectionColor的默認(rèn)值為rgba(100,100,255,0.3)。
示例1
將selectionColor鍵傳遞給類(lèi)
selectionColor 屬性接受一個(gè)確定所選內(nèi)容顏色的字符串。我們可以使用 RGBA 值,它代表:紅、藍(lán)、綠和 alpha。 alpha 參數(shù)指定顏色的不透明度。讓我們看一個(gè)代碼示例,了解如何使用 FabricJS 設(shè)置畫(huà)布中選擇區(qū)域的顏色。
<!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 color of a selection area using FabricJs</h2> <p>Select an area around the object to see the color of the selection area.</p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas", { selectionColor: "rgba(0,0,0,0.4)", }); // Creating an instance of the fabric.Rect class var rect = new fabric.Rect({ left: 170, top: 90, width: 60, height: 80, fill: "#006400", angle: 90, }); // Adding it to the canvas canvas.add(rect); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
登錄后復(fù)制
示例 2
使用顏色名稱(chēng)代替 RGBA 值
我們還可以使用特定顏色代替 RGBA 值。在此示例中,selectionColor 屬性已設(shè)置為顏色“紅色”。
<!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 color of a selection area using FabricJs</h2> <p>Select an area around the object to see the color of the selection area.</p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas", { selectionColor: "red", }); // Creating an instance of the fabric.Rect class var rect = new fabric.Rect({ left: 170, top: 90, width: 60, height: 80, fill: "#006400", angle: 90, }); // Adding it to the canvas canvas.add(rect); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
登錄后復(fù)制
以上就是如何使用 FabricJS 設(shè)置畫(huà)布上選擇區(qū)域的顏色?的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注www.92cms.cn其它相關(guān)文章!