當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML <canvas> width屬性用法及代碼示例


HTML <canvas> width屬性用於以像素為單位指定<canvas>的寬度。

用法:

<canvas width="pixels"> 

屬性值:它包含值,即以像素為單位指定畫布寬度的像素。它的默認值為300。


例:本示例說明了Canvas元素中width屬性的使用。

<!-- HTML code to illustrate  
width attribute of canvas tag -->
<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML canvas Width attribute</title> 
</head> 
  
<body style="text-align:center;"> 
    <h1>GeeksForGeeks</h1> 
    <h2>HTML Canvas Width Attribute</h2> 
    <canvas id="geeks" 
            height="200"
            width="200" 
            style="border:1px solid black"> 
    </canvas> 
  
    <script> 
        var c = document.getElementById("geeks"); 
        var cx = c.getContext("2d"); 
        cx.beginPath(); 
        cx.arc(100, 100, 90, 0, 2 * Math.PI); 
        cx.stroke(); 
    </script> 
</body> 
  
</html>

輸出:

支持的瀏覽器:

  • 穀歌瀏覽器4.0
  • Firefox 2.0
  • 邊9.0
  • Opera 9.0
  • 蘋果Safari 3.1


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <canvas> width Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。