如何使用 FabricJS 在对象悬停时创建带有十字准线光标的椭圆?
在本教程中,我们将使用 FabricJS 创建一个椭圆,并在悬停在对象上时显示十字准线光标。十字准线是可用的原生光标样式之一,也可以在 FabricJS 画布中使用。FabricJS 提供了各种类型的鼠标光标,例如默认、全部滚动、十字准线、列调整大小、行调整大小等,这些光标在底层重用了原生光标。hoverCursor 属性在将鼠标悬停在画布对象上时设置光标的样式。
语法
new fabric.Ellipse({ hoverCursor: String }: Object
参数
options (可选) - 此参数是一个对象,它为我们的椭圆提供了额外的自定义。使用此参数,可以更改与对象相关的颜色、光标、描边宽度以及许多其他属性,其中hoverCursor 是一个属性。
选项键
hoverCursor - 此属性接受一个字符串,该字符串确定在将鼠标悬停在画布对象上时要使用的光标的名称。通过使用此属性,我们可以在将鼠标悬停在画布上椭圆对象时设置默认的光标值。
示例 1
将hoverCursor 键传递给类
默认情况下,当我们将鼠标悬停在画布中的椭圆对象上时,光标类型为移动。让我们看看一段代码,该代码创建一个画布,并在使用 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 crosshair cursor on hover over objects using FabricJS?</h2> <p> Hover the mouse over the ellipse to see the crosshair 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: 100, top: 100, fill: "#a2006d", rx: 80, ry: 50, stroke: "#c154c1", strokeWidth: 5, hoverCursor: "crosshair", }); // Adding it to the canvas canvas.add(ellipse); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
示例 2
证明hoverCursor 应用于特定对象
在此示例中,我们将 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 crosshair cursor on hover over objects using FabricJS?</h2> <p>Hover the mouse over the left ellipse to see the crosshair cursor. We haven't applied the hoverCursor property to the right ellipse. </p2> <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: 90, top: 100, fill: "white", rx: 80, ry: 50, stroke: "#c154c1", strokeWidth: 5, hoverCursor: "crosshair", }); // Initiate another ellipse instance var ellipseTwo = new fabric.Ellipse({ left: 280, top: 100, fill: "#a2006d", rx: 80, ry: 50, }); // Add them to the canvas canvas.add(ellipseOne); canvas.add(ellipseTwo); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
广告