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