在本文中,我们将看到如何使用FabricJS设置控制画布椭圆角的虚线模式。画布意味着椭圆是可移动的,并且可以根据需要进行拉伸。此外,当涉及初始笔划颜色,填充颜色,笔划宽度或半径时,可以定制椭圆。
为了使其成为可能,我们将使用一个名为FabricJS的JavaScript库。使用CDN导入库后,我们将在body标签中创建一个canvas块,其中将包含椭圆。之后,我们将初始化FabricJS提供的Canvas和Ellipse的实例,并使用cornerDashArray属性设置一个控制画布椭圆的角点的虚线图案,并按照下面的示例中的方式在Canvas上渲染Ellipse。
用法:
fabric.Ellipse({ rx:number, ry:number, cornerDashArray:array });
参数:该函数接受上述和以下所述的三个参数:
- rx:此参数定义水平半径。
- ry:此参数定义垂直半径。
- cornerDashArray:此参数定义控制角的虚线图案。
程序:本示例使用FabricJS设置虚线控制canvas-like椭圆的角的图案,如下所示。您必须单击该对象以查看控制角的虚线图案。
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js | Ellipse cornerDashArray 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 dash pattern 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,
cornerDashArray:[5]
});
// Render the Ellipse in canvas
canvas.add(ellipse);
</script>
</body>
</html>
输出:
相关用法
- Fabric.js Circle cornerDashArray属性用法及代码示例
- Fabric.js Rect cornerDashArray属性用法及代码示例
- Fabric.js Triangle cornerDashArray属性用法及代码示例
- Fabric.js Image cornerDashArray属性用法及代码示例
- 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 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属性用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 Fabric.js | Ellipse cornerDashArray Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。