如何使用 FabricJS 建立一個在懸停於物件上時顯示文字游標的橢圓形?
在本教程中,我們將學習如何使用 FabricJS 建立一個在懸停於物件上時顯示文字游標的橢圓形。“text” 是 FabricJS 畫布中可用的原生游標樣式之一。FabricJS 提供了各種型別的游標,例如預設游標、全滾動游標、十字游標、列調整大小游標、行調整大小游標等,這些游標都在底層重用了原生游標。`hoverCursor` 屬性設定懸停在畫布物件上時游標的樣式。
語法
new fabric.Ellipse({ hoverCursor: String }: Object)
引數
options (可選) − 此引數是一個物件,它為我們的橢圓形提供了額外的自定義選項。使用此引數可以更改與物件相關的顏色、游標、筆劃寬度以及許多其他屬性,其中`hoverCursor` 是一個屬性。
選項鍵
hoverCursor − 此屬性接受一個字串,用於確定在將滑鼠懸停在畫布物件上時要使用的游標名稱。使用此屬性,我們可以設定在將滑鼠懸停在畫布上的橢圓形物件上時的預設游標值。
示例 1
將`hoverCursor`鍵傳遞給類
預設情況下,當我們將滑鼠懸停在畫布中的橢圓形物件上時,游標型別為“move”。讓我們來看一下使用 FabricJS 在將滑鼠懸停在橢圓形物件上時建立具有**文字**游標的畫布的程式碼。
<!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 an Ellipse with text cursor on hover over objects using FabricJS</h2> <p>Hover the mouse over the object to see the <b>text</b> cursor. </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: 100, fill: "white", rx: 80, ry: 50, stroke: "black", strokeWidth: 5, hoverCursor: "text", }); // Adding it to the canvas canvas.add(ellipse); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
示例 2
演示此效果僅影響例項
在此示例中,我們將`hoverCursor`鍵傳遞給橢圓形類,這意味著不會為畫布中的每個物件更改`hoverCursor`屬性。更改只會發生在單個物件上。
<!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 an Ellipse with text cursor on hover over objects using FabricJS</h2> <p>Hover the mouse over the objects. You will get to see the <b>text</b> cursor on the left ellipse. We haven't applied the <b>hoverCursor</b> property on the right ellipse. </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); // Initiate an ellipse instance var ellipseOne = new fabric.Ellipse({ left: 115, top: 100, fill: "white", rx: 80, ry: 50, stroke: "black", strokeWidth: 5, hoverCursor: "text", }); // Initiate another ellipse instance var ellipseTwo = new fabric.Ellipse({ left: 335, top: 100, rx: 80, ry: 50, fill: "#b22222", }); // Add them to the canvas canvas.add(ellipseOne); canvas.add(ellipseTwo); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
廣告