在本文中,我们将看到如何使用Fabric.js使用文本画布的hoverCursor属性。画布意味着写入的文本是可移动的,可旋转的,可调整大小的,并且可以拉伸。此外,文本本身不能像文本框一样进行编辑。
为了使其成为可能,我们将使用一个名为Fabric.js的JavaScript库。使用CDN导入库后,我们将在body标签中创建一个canvas块,其中将包含我们的文本。此后,我们将初始化FabricJS提供的Canvas和Text实例,并设置画布的hoverCursor属性。
用法
fabric.Text(text, hoverCursor:pointer );
参数:此属性接受如上所述和以下所述的一个参数:
- hoverCursor:它是一个字符串值。
HTML
<!DOCTYPE html>
<html>
<head>
<!-- Loading the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align:center;width:400px;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Text hoverCursor Property
</b>
</div>
<div style="text-align:center;">
<canvas id="canvas" width="400" height="200"
style="border:1px solid green;">
</canvas>
</div>
<script>
// Create a new instace of Canvas
var canvas = new fabric.Canvas("canvas");
// Create a new Text instance
var geek = new fabric.Text('GeeksforGeeks', {
hoverCursor:'pointer'
});
// Render the text on Canvas
canvas.add(geek);
canvas.centerObject(geek);
</script>
</body>
</html>
输出:
参考: http://fabricjs.com/docs/fabric.Object.html#hoverCursor
相关用法
- Fabric.js Rect hoverCursor属性用法及代码示例
- Fabric.js Triangle hoverCursor属性用法及代码示例
- Fabric.js Polygon hoverCursor属性用法及代码示例
- Fabric.js Image hoverCursor属性用法及代码示例
- Fabric.js Textbox hoverCursor属性用法及代码示例
- Fabric.js line hoverCursor属性用法及代码示例
- Fabric.js Polyline hoverCursor属性用法及代码示例
- Fabric.js Circle hoverCursor属性用法及代码示例
- Fabric.js Ellipse hoverCursor属性用法及代码示例
- Fabric.js Path hoverCursor属性用法及代码示例
- Fabric.js Itext hoverCursor属性用法及代码示例
- Fabric.js Group hoverCursor属性用法及代码示例
- CSS text-align用法及代码示例
- CSS text-decoration用法及代码示例
- CSS text-decoration-color用法及代码示例
- CSS text-decoration-line用法及代码示例
- CSS text-justify用法及代码示例
- CSS text-align-last用法及代码示例
- CSS text-transform属性用法及代码示例
注:本文由纯净天空筛选整理自thacker_shahid大神的英文原创作品 Fabric.js Text hoverCursor Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。