在本文中,我们将看到如何使用Fabric.js设置一组画布的strokeDashArray。 Fabric.js中的组是可移动的,可以根据需要进行拉伸。此外,当涉及初始笔划颜色,高度,宽度,填充颜色或笔划宽度时,可以自定义组。
为了使之成为可能,我们将使用一个名为Fabric.js的JavaScript库。导入库后,我们将在body标签中创建一个画布块,其中将包含Group。此后,我们将初始化Fabric.js提供的Canvas和Group实例,并分别使用stroke和strokeDashArray属性设置描边颜色和描边虚线图案。
用法:
fabric.Group([canvas1, canvas2], { strokeDashArray:Array });
参数:该属性接受上述和以下描述的单个参数:
- strokeDashArray:它指定笔划破折号图案。
以下示例说明了JavaScript中Fabric.js Group strokeDashArray属性的用法:
例:
HTML
<!DOCTYPE html>
<html>
<head>
<!-- FabricJS CDN -->
<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:400px;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Group strokeDashArray Property
</b>
</div>
<div style="text-align:center;">
<canvas id="canvas" width="500" height="300"
style="border:1px solid green;">
</canvas>
</div>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a circle instance
var circle = new fabric.Circle({
radius:100,
fill:'lightgreen',
stroke:'red',
strokeWidth:3,
strokeDashArray:[10],
scaleY:0.6,
originX:'center',
originY:'center'
});
// Initiate a text instance
var text = new fabric.Text('GeeksforGeeks', {
fontSize:25,
originX:'center',
originY:'center'
});
// Initiate a Group instance
var group = new fabric.Group([ circle, text ], {
stroke:'red',
strokeDashArray:[10]
});
// Render the Group in canvas
canvas.add(group);
canvas.centerObject(group);
</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 Polygon strokeDashArray属性用法及代码示例
- Fabric.js line strokeDashArray属性用法及代码示例
- Fabric.js Polyline strokeDashArray属性用法及代码示例
- Fabric.js Path strokeDashArray属性用法及代码示例
- Fabric.js Image strokeDashArray属性用法及代码示例
- Fabric.js Itext strokeDashArray属性用法及代码示例
- Fabric.js Group paintFirst属性用法及代码示例
- Fabric.js Group perPixelTargetFind属性用法及代码示例
- Fabric.js Group scaleX属性用法及代码示例
- Fabric.js Group strokeLineJoin属性用法及代码示例
- Fabric.js Group width属性用法及代码示例
- Fabric.js Group angle属性用法及代码示例
- Fabric.js Group borderOpacityWhenMoving属性用法及代码示例
- Fabric.js Group evented属性用法及代码示例
- Fabric.js Group borderScaleFactor属性用法及代码示例
- Fabric.js Group cornerStrokeColor属性用法及代码示例
- Fabric.js Group fillRule属性用法及代码示例
- Fabric.js Group centeredRotation属性用法及代码示例
注:本文由纯净天空筛选整理自thacker_shahid大神的英文原创作品 Fabric.js Group strokeDashArray Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。