在本文中,我们将看到如何使用FabricJS设置画布椭圆控制角的颜色。画布意味着椭圆是可移动的,并且可以根据需要进行拉伸。此外,当涉及初始笔划颜色,填充颜色,笔划宽度或半径时,可以定制椭圆。
为了使其成为可能,我们将使用一个名为FabricJS的JavaScript库。使用CDN导入库后,我们将在body标签中创建一个canvas块,其中将包含椭圆。此后,我们将初始化FabricJS提供的Canvas和Ellipse实例,并使用cornerColor属性设置控制画布椭圆的角的颜色,并在画布上渲染椭圆,如下面的示例所示。
用法:
fabric.Ellipse({ rx:number, ry:number, cornerColor:string });
参数:该函数接受上述和以下所述的三个参数:
- rx:此参数定义水平半径。
- ry:此参数定义垂直半径。
- cornerColor:此参数定义控制角的颜色。
程序:本示例使用FabricJS设置canvas-like椭圆的控制角颜色,如下所示。您必须单击对象以查看控制角的颜色。
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js | Ellipse cornerColor Property
</title>
<!-- Loading the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<b>
Set color of controlling corners of
canvas-type ellipse with JavaScript.
</b>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000">
</canvas>
</center>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a Ellipse instance
var ellipse = new fabric.Ellipse({
rx:80,
ry:40,
cornerColor:'red'
});
// Render the Ellipse in canvas
canvas.add(ellipse);
</script>
</body>
</html>
输出:
相关用法
- Fabric.js Circle cornerColor属性用法及代码示例
- Fabric.js Rect cornerColor属性用法及代码示例
- Fabric.js Triangle cornerColor属性用法及代码示例
- Fabric.js Polygon cornerColor属性用法及代码示例
- Fabric.js Image cornerColor属性用法及代码示例
- 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 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属性用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 Fabric.js | Ellipse cornerColor Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。