在本文中,我们将看到如何使用FabricJS绘制固定角度的画布Ellipse。画布“椭圆”表示“椭圆”是可移动的,并且可以根据需要进行拉伸。此外,当涉及初始笔触颜色,高度,宽度,填充颜色或笔触宽度时,可以自定义椭圆。
方法:
- 为了使之成为可能,我们将使用一个名为FabricJS的JavaScript HTML5画布库。
- 导入库后,我们将在body标记中创建一个canvas块,其中将包含Ellipse。
- 之后,我们将初始化FabricJS提供的Canvas和Ellipse实例,并使用angle属性启用画布Ellipse的角度,并在Canvas上渲染Ellipse,如下所示。
用法:
fabric.Ellipse({ rx:number, ry:number, fill:string, angle:number });
参数:该函数接受上述和以下所述的四个参数:
- rx:它指定水平半径。
- ry:它指定垂直半径。
- fill:它指定填充椭圆的颜色。
- angle:此参数定义椭圆的角度。
例:本示例使用FabricJS启用canvas-like椭圆的角度,如下所示。
HTML
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js Ellipse angle 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 angle 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',
angle:45
});
// Render the ellipse in canvas
canvas.add(ellipse);
canvas.centerObject(ellipse);
</script>
</body>
</html>
输出:
相关用法
- 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属性用法及代码示例
- Fabric.js Ellipse left属性用法及代码示例
- Fabric.js Ellipse lockMovementX属性用法及代码示例
- Fabric.js Ellipse lockMovementY属性用法及代码示例
- Fabric.js Ellipse lockRotation属性用法及代码示例
- Fabric.js Ellipse borderScaleFactor属性用法及代码示例
- Fabric.js Ellipse cornerSize属性用法及代码示例
- Fabric.js Ellipse hasBorders属性用法及代码示例
- Fabric.js Ellipse lockScalingX属性用法及代码示例
- Fabric.js Ellipse lockScalingY属性用法及代码示例
- Fabric.js Ellipse lockUniScaling属性用法及代码示例
注:本文由纯净天空筛选整理自blalverma92大神的英文原创作品 Fabric.js Ellipse angle Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。