在本文中,我们将看到如何使用 Fabric.js 设置画布组的 moveCursor。 Fabric.js 中的 Group 是可移动的,可以根据需要拉伸。此外,当涉及到初始笔画颜色、高度、宽度、填充颜色或笔画宽度时,可以自定义组。
方法:为了使其成为可能,我们将使用一个名为 Fabric.js 的 JavaScript 库。导入库后,我们将在包含 Group 的 body 标签中创建一个画布块。之后,我们将初始化 Fabric.js 提供的 Canvas 和 Group 的实例,并使用 moveCursor 属性设置 canvas Group 的移动光标值。
用法:
fabric.Group([canvas1, canvas2], { moveCursor:String });
参数:该属性接受上述和以下描述的单个参数:
- moveCursor:它指定移动画布对象时的光标值。
下面的示例说明了在 JavaScript 中使用 Fabric.js Group moveCursor 属性:
例:
HTML
<!DOCTYPE html>
<html>
<head>
<!-- FabricJS CDN -->
<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 | Group moveCursor Property
</b>
</div>
<div style="text-align:center;">
<canvas id="canvas"
width="500" height="300"
style="border:1px solid green;">
</canvas>
</div>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a circle instance
var circle = new fabric.Circle({
radius:100,
fill:'lightgreen',
scaleY:0.6,
originX:'center',
originY:'center'
});
// Initiate a text instance
var text = new fabric.Text('GeeksforGeeks', {
fontSize:25,
originX:'center',
originY:'center'
});
// Initiate a Group instance
var group = new fabric.Group([ circle, text ], {
moveCursor:'pointer'
});
// Render the Group in canvas
canvas.add(group);
canvas.centerObject(group);
</script>
</body>
</html>
输出:
相关用法
- Fabric.js Rect moveCursor属性用法及代码示例
- Fabric.js Triangle moveCursor属性用法及代码示例
- Fabric.js Polygon moveCursor属性用法及代码示例
- Fabric.js Path moveCursor属性用法及代码示例
- Fabric.js Textbox moveCursor属性用法及代码示例
- Fabric.js Polyline moveCursor属性用法及代码示例
- Fabric.js line moveCursor属性用法及代码示例
- Fabric.js Circle moveCursor属性用法及代码示例
- Fabric.js Ellipse moveCursor属性用法及代码示例
- Fabric.js Image moveCursor属性用法及代码示例
- Fabric.js Text moveCursor属性用法及代码示例
- Node.js writeStream.moveCursor()用法及代码示例
- Fabric.js Group fillRule属性用法及代码示例
- Fabric.js Group top属性用法及代码示例
- Fabric.js Group subTargetCheck属性用法及代码示例
- Fabric.js Group strokeUniform属性用法及代码示例
- Fabric.js Group strokeMiterLimit属性用法及代码示例
- Fabric.js Group flipY属性用法及代码示例
- Fabric.js Group borderColor属性用法及代码示例
- Fabric.js Group flipX属性用法及代码示例
- Fabric.js Group hasBorders属性用法及代码示例
- Fabric.js Group minScaleLimit属性用法及代码示例
- Fabric.js Group lockSkewingY属性用法及代码示例
- Fabric.js Group lockSkewingX属性用法及代码示例
注:本文由纯净天空筛选整理自thacker_shahid大神的英文原创作品 Fabric.js Group moveCursor Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。