在本文中,我們將看到如何使用FabricJS繪製固定角度的畫布圓。畫布圈是可移動的,可以根據需要進行拉伸。此外,當涉及初始筆劃顏色,高度,寬度,填充顏色或筆劃寬度時,可以自定義圓。
為了使之成為可能,我們將使用一個名為FabricJS的JavaScript庫。導入庫後,我們將在body標簽中創建一個畫布塊,其中將包含圓圈。此後,我們將初始化FabricJS提供的canvas和circle實例,並使用angle屬性啟用畫布圓角,並在畫布上渲染圓,如下所示。
用法:
fabric.Circle({
radius:number,
angle:number
});
參數:該函數接受上麵提到和下麵描述的兩個參數。
- radius:它指定圓的半徑。
- angle:此參數定義圓的角度。
例:本示例使用FabricJS啟用canvas-like圓的角度,如下所示。啟用angle屬性後,它將按定義的角度旋轉圓。
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>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h3>
Fabric.js Circle angle Property
</h3>
<canvas id="canvas" width="600" height="300"
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:100,
fill:'',
stroke:'green',
strokeWidth:3,
angle:30
});
// Render the circle in canvas
canvas.add(circle);
canvas.centerObject(circle);
</script>
</body>
</html>
輸出:
相關用法
- Fabric.js Rect angle屬性用法及代碼示例
- Fabric.js Image angle屬性用法及代碼示例
- Fabric.js Polygon angle屬性用法及代碼示例
- Fabric.js line angle屬性用法及代碼示例
- Fabric.js Textbox angle屬性用法及代碼示例
- Fabric.js Polyline angle屬性用法及代碼示例
- Fabric.js Path angle屬性用法及代碼示例
- Fabric.js Ellipse angle屬性用法及代碼示例
- Fabric.js Group angle屬性用法及代碼示例
- Fabric.js Itext angle屬性用法及代碼示例
- Fabric.js Triangle angle屬性用法及代碼示例
- d3.js lineRadial.angle()用法及代碼示例
- d3.js areaRadial.angle()用法及代碼示例
- Fabric.js Circle borderDashArray屬性用法及代碼示例
- Fabric.js Circle borderColor屬性用法及代碼示例
- Fabric.js Circle borderOpacityWhenMoving屬性用法及代碼示例
- Fabric.js Circle cornerColor屬性用法及代碼示例
- Fabric.js Circle cornerDashArray屬性用法及代碼示例
- Fabric.js Circle cornerSize屬性用法及代碼示例
- Fabric.js Circle cornerStrokeColor屬性用法及代碼示例
- Fabric.js Circle fill屬性用法及代碼示例
- Fabric.js Circle hasControls屬性用法及代碼示例
- Fabric.js Circle hasRotatingPoint屬性用法及代碼示例
注:本文由純淨天空篩選整理自blalverma92大神的英文原創作品 Fabric.js Circle angle Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。