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
相關用法
- HTML <th> height屬性用法及代碼示例
- HTML <img> height屬性用法及代碼示例
- HTML <td> height屬性用法及代碼示例
- HTML height屬性用法及代碼示例
- HTML <embed> height屬性用法及代碼示例
- HTML <video> height屬性用法及代碼示例
- HTML Marquee height用法及代碼示例
- HTML <iframe> height屬性用法及代碼示例
- HTML <input> height屬性用法及代碼示例
- HTML <object> height屬性用法及代碼示例
- HTML <video> height屬性用法及代碼示例
- HTML Screen height用法及代碼示例
- HTML IFrame height用法及代碼示例
- HTML embed height用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 HTML | <canvas> height Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。