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


HTML <canvas> height属性用法及代码示例


HTML <canvas> height属性用于以像素为单位指定<canvas>元素的高度。

用法:

<canvas height="pixels">

属性值:它包含单个值像素,这些像素以像素为单位指定画布的高度。它的默认值为150。


例:本示例说明了Canvas元素中height属性的用法。

<!-- HTML code to illustrate  
height attribute of canvas tag -->
<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML canvas height attribute</title> 
</head> 
  
<body style="text-align:center;"> 
    <h1>GeeksForGeeks</h1> 
    <h2>HTML Canvas Height 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>

输出:

支持的浏览器:下面列出了HTML <canvas> height属性支持的浏览器:

  • 谷歌浏览器4.0
  • Internet Explorer 9.0
  • Firefox 2.0
  • Safari 3.1
  • Opera 9.0


相关用法


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