在本文中,我们将看到如何使用FabricJS设置画布Ellipse的moveCursor属性。画布“椭圆”表示“椭圆”是可移动的,并且可以根据需要进行拉伸。此外,当涉及初始笔触颜色,高度,宽度,填充颜色或笔触宽度时,可以自定义椭圆。
为了使之成为可能,我们将使用一个名为FabricJS的JavaScript库。导入库后,我们将在body标签中创建一个包含Ellipse的canvas块。之后,我们将初始化FabricJS提供的Canvas和Ellipse的实例,并使用moveCursor属性设置canvas Ellipse的移动光标值,并在画布上渲染Ellipse,如下面的示例所示。
用法:
fabric.Ellipse({ rx:number, ry:number, fill:string, moveCursor:string });
参数:该函数接受上述和以下所述的四个参数:
- rx:它指定水平半径。
- ry:它指定垂直半径。
- 填:它指定填充椭圆的颜色。
- moveCursor:它在移动画布对象时指定光标值。
例:本示例使用FabricJS设置移动对象时将起作用的moveCursor值。
HTML
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js Ellipse moveCursor Property
</title>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h3>
Fabric.js Ellipse moveCursor Property
</h3>
<canvas id="canvas" width="600" height="300"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a Ellipse instance
var ellipse = new fabric.Ellipse({
rx:150,
ry:75,
fill:'',
stroke:'green',
moveCursor:'pointer'
});
// Render the ellipse in canvas
canvas.add(ellipse);
canvas.centerObject(ellipse);
</script>
</body>
</html>
输出:
相关用法
- Fabric.js Rect moveCursor属性用法及代码示例
- Fabric.js Triangle moveCursor属性用法及代码示例
- Fabric.js Polygon moveCursor属性用法及代码示例
- Fabric.js line moveCursor属性用法及代码示例
- Fabric.js Textbox moveCursor属性用法及代码示例
- Fabric.js Polyline moveCursor属性用法及代码示例
- Fabric.js Circle moveCursor属性用法及代码示例
- Fabric.js Image moveCursor属性用法及代码示例
- Fabric.js Path moveCursor属性用法及代码示例
- Node.js writeStream.moveCursor()用法及代码示例
- Fabric.js Ellipse borderOpacityWhenMoving属性用法及代码示例
- Fabric.js Ellipse fill属性用法及代码示例
- Fabric.js Ellipse hasControls属性用法及代码示例
- Fabric.js Ellipse centeredScaling属性用法及代码示例
- Fabric.js Ellipse cornerStrokeColor属性用法及代码示例
- Fabric.js Ellipse cornerStyle属性用法及代码示例
- Fabric.js Ellipse borderDashArray属性用法及代码示例
- Fabric.js Ellipse cornerDashArray属性用法及代码示例
- Fabric.js Ellipse cornerColor属性用法及代码示例
- Fabric.js Ellipse borderColor属性用法及代码示例
- Fabric.js Ellipse centeredRotation属性用法及代码示例
- Fabric.js Ellipse lockScalingFlip属性用法及代码示例
- Fabric.js Ellipse backgroundColor属性用法及代码示例
- Fabric.js Ellipse hasRotatingPoint属性用法及代码示例
注:本文由纯净天空筛选整理自blalverma92大神的英文原创作品 Fabric.js Ellipse moveCursor Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。