在本文中,我们将看到如何使用FabricJS将笔划虚线图案添加到Polygon画布。画布意味着书写的多边形是可移动的,可旋转的,可调整大小的,并且可以拉伸。但是在本文中,我们将添加笔划破折号模式。此外,多边形本身无法像文本框一样进行编辑。
为了使其成为可能,我们将使用一个名为FabricJS的JavaScript库。使用CDN导入库后,我们将在body标签中创建一个canvas块,其中将包含Polygon。之后,我们将初始化FabricJS提供的Canvas和Polygon实例,并使用stroke属性创建一个笔触,并进一步使用strokeDashArray属性添加笔划破折号图案,并在多边形上渲染Canvas,如以下示例所示。
用法:
fabric.Polygon([ { x:pixel, y:pixel }, { x:pixel, y:pixel }, { x:pixel, y:pixel}, { x:pixel, y:pixel}, { x:pixel, y:pixel }], { strokeDashArray:Array } );
参数:此属性接受单个值作为上述和以下描述的数组:
- Array:它指定笔划破折号图案。
下面的示例说明了Fabric.js strokeDashArray:
例:
HTML
<!DOCTYPE html>
<html>
<head>
<!-- Loading the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align:center;width:600px;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Polygon strokeDashArray Property
</b>
</div>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000;">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a polygon instance
var polygon = new fabric.Polygon([{
x:295,
y:10
}, {
x:235,
y:198
}, {
x:385,
y:78
}, {
x:205,
y:78
}, {
x:355,
y:198
}], {
stroke:'green',
strokeDashArray:[10]
});
// Render the polygon in canvas
canvas.add(polygon);
</script>
</body>
</html>
输出:
相关用法
- Fabric.js Text strokeDashArray属性用法及代码示例
- Fabric.js Circle strokeDashArray属性用法及代码示例
- Fabric.js Rect strokeDashArray属性用法及代码示例
- Fabric.js Triangle strokeDashArray属性用法及代码示例
- Fabric.js Ellipse strokeDashArray属性用法及代码示例
- Fabric.js Textbox strokeDashArray属性用法及代码示例
- Fabric.js line strokeDashArray属性用法及代码示例
- Fabric.js Polygon minScaleLimit属性用法及代码示例
- Fabric.js Polygon fill属性用法及代码示例
- Fabric.js Polygon borderScaleFactor属性用法及代码示例
- Fabric.js Polygon selectionBackgroundColor属性用法及代码示例
- Fabric.js Polygon scaleY属性用法及代码示例
- Fabric.js Polygon lockSkewingX属性用法及代码示例
- Fabric.js Polygon backgroundColor属性用法及代码示例
- Fabric.js Polygon flipX属性用法及代码示例
- Fabric.js Polygon flipY属性用法及代码示例
- Fabric.js Polygon lockMovementY属性用法及代码示例
- Fabric.js Polygon hoverCursor属性用法及代码示例
- Fabric.js Polygon cornerColor属性用法及代码示例
- Fabric.js Polygon lockSkewingY属性用法及代码示例
- Fabric.js Polygon lockScalingFlip属性用法及代码示例
- Fabric.js Polygon borderDashArray属性用法及代码示例
- Fabric.js Polygon originX属性用法及代码示例
- Fabric.js Polygon originY属性用法及代码示例
注:本文由纯净天空筛选整理自skyridetim大神的英文原创作品 Fabric.js Polygon strokeDashArray Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。