arc()方法用於創建圓弧/曲線,即圓或圓的一部分。
用法:
context.arc(x, y, r, sAngle, eAngle, counterclockwise);
參數:
- x:此參數指定圓心的x坐標。
- y:此參數指定圓心的y坐標。
- r:此參數指定圓的半徑。
- sAngle:此參數以弧度指定起始角度(圓弧的3點位置表示0)。
- eAngle:此參數指定弧度的終止角度。
- counterclockwise:此參數指定圖形應為順時針或逆時針。默認情況下為false,表示順時針。
範例1:
<!DOCTYPE html>
<html>
<head>
<title>
HTML canvas arc() Method
</title>
</head>
<body style="text-align:left;">
<h1>GeeksforGeeks</h1>
<h2>HTML canvas arc() Method</h2>
<canvas id="GFG" width="500" height="200">
</canvas>
<script>
var doc_id = document.getElementById("GFG");
var context = doc_id.getContext("2d");
context.beginPath();
context.strokeStyle = 'green';
context.arc(100, 50, 40, 0, 2 * Math.PI);
context.stroke();
</script>
</body>
</html>
輸出:
範例2:
<!DOCTYPE html>
<html>
<head>
<title>
HTML canvas arc() Method
</title>
</head>
<body style="text-align:left;">
<h1>GeeksforGeeks</h1>
<h2>HTML canvas arc() Method</h2>
<canvas id="GFG" width="500" height="200">
</canvas>
<script>
var doc_id = document.getElementById("GFG");
var context = doc_id.getContext("2d");
context.beginPath();
context.fillStyle = 'green';
context.arc(100, 50, 40, 0, 2 * Math.PI);
context.fill();
</script>
</body>
</html>
輸出:
支持的瀏覽器:下麵列出了HTML canvas arc()方法支持的瀏覽器:
- 穀歌瀏覽器
- Internet Explorer 9.0
- 火狐瀏覽器
- 蘋果瀏覽器
- Opera
相關用法
- HTML canvas beginPath()用法及代碼示例
- HTML canvas fillText()用法及代碼示例
- HTML canvas createPattern()用法及代碼示例
- HTML canvas strokeRect()用法及代碼示例
- HTML canvas measureText()用法及代碼示例
- HTML canvas fillRect()用法及代碼示例
- HTML canvas lineTo()用法及代碼示例
- HTML canvas fill()用法及代碼示例
- HTML canvas createImageData()用法及代碼示例
- HTML canvas clearRect()用法及代碼示例
- HTML canvas rect()用法及代碼示例
- HTML canvas stroke()用法及代碼示例
- HTML canvas closePath()用法及代碼示例
- HTML canvas scale()用法及代碼示例
- HTML canvas arcTo()用法及代碼示例
注:本文由純淨天空篩選整理自shubham_singh大神的英文原創作品 HTML | canvas arc() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。