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