如何使用 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>
广告