当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML canvas arc()用法及代码示例


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


相关用法


注:本文由纯净天空筛选整理自shubham_singh大神的英文原创作品 HTML | canvas arc() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。