在本文中,我們將看到如何使用FabricJS設置畫布圓的筆觸顏色。畫布表示圓是可移動的,可以根據需要拉伸。此外,當涉及初始筆劃顏色,填充顏色,筆劃寬度或半徑時,可以自定義圓。
方法:為了實現這一點,我們將使用一個名為FabricJS的JavaScript庫。使用CDN導入庫後,我們將在body標簽中創建一個畫布塊,其中將包含我們的圈子。此後,我們將初始化FabricJS提供的Canvas和Circle實例,並使用stroke屬性設置圓圈的筆觸顏色,並按照以下示例中的方式在Canvas上呈現Circle。
用法:
fabric.Circle({ radius:number, stroke:string });
參數:該函數接受上述和以下所述的兩個參數:
- radius:它指定圓的半徑。
- stroke:它指定筆觸顏色。
例:本示例使用FabricJS設置畫布圓的筆觸顏色。
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js | Circle stroke Property
</title>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<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 Circle instance
var circle = new fabric.Circle({
radius:50,
stroke:'red'
});
// Render the circle in canvas
canvas.add(circle);
</script>
</body>
</html>
輸出:
相關用法
- CSS stroke-width用法及代碼示例
- CSS stroke-linecap用法及代碼示例
- CSS stroke-opacity用法及代碼示例
- CSS stroke-dashoffset用法及代碼示例
- CSS stroke-dasharray用法及代碼示例
- CSS stroke-linejoin用法及代碼示例
- CSS stroke-miterlimit用法及代碼示例
- Fabric.js Text stroke屬性用法及代碼示例
- Fabric.js Rect stroke屬性用法及代碼示例
- Fabric.js Triangle stroke屬性用法及代碼示例
- Fabric.js Ellipse stroke屬性用法及代碼示例
- Fabric.js Polyline stroke屬性用法及代碼示例
- CSS stroke-color屬性用法及代碼示例
- HTML canvas stroke()用法及代碼示例
- p5.js stroke()用法及代碼示例
- Node.js GM stroke()用法及代碼示例
- SVG stroke-width屬性用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 Fabric.js | Circle stroke Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。