在本文中,我們將看到如何使用 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。