在本文中,我們將看到如何使用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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。