height屬性以像素為單位指定 <canvas>元素的高度,每次重新設(shè)置畫布的高度或?qū)挾葧r(shí),都會(huì)清除畫布內(nèi)容。
一個(gè)高度和寬度為200像素的<canvas>元素:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>HTML <canvas> height 屬性使用-菜鳥教程(cainiaoplus.com)</title> </head> <body> <canvas id="myCanvas" width="200" height="200" style="border:1px solid"> Your browser does not support the HTML5 canvas tag. </canvas> <script> var c = document.getElementById("myCanvas"); var ctx = c.getContext("2d"); ctx.fillStyle = "#92B901"; ctx.fillRect(50, 50, 100, 100); </script> </body> </html>測(cè)試看看 ?/?
IEFirefoxOperaChromeSafari
所有主流瀏覽器都支持 height 屬性。
注意: Internet Explorer 8 及更早IE版本不支持 <canvas> 標(biāo)簽。
height屬性以像素為單位指定<canvas>元素的高度。
提示:使用width 屬性以像素為單位指定<canvas>元素的寬度。
提示: 每次重新設(shè)置畫布的高度或?qū)挾葧r(shí),都會(huì)清除畫布內(nèi)容(請(qǐng)看頁(yè)面底部的示例)。
提示: 請(qǐng)?jiān)谖覀兊?a href="../html5/html5-canvas.html"> HTML Canvas 教程中學(xué)習(xí)更多有關(guān) <canvas>的知識(shí)。
<canvas> 是 HTML5 中的新標(biāo)簽。
<canvas height="pixels">
Value | Description |
---|---|
pixels | 規(guī)定以像素計(jì)的 canvas 高度(比如 "100px" 或僅僅是 "100")。默認(rèn)是 "150"。 |
通過(guò)設(shè)置width或height屬性(使用JavaScript)清除畫布:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>HTML <canvas> width 屬性使用-菜鳥教程(cainiaoplus.com)</title> </head> <body> <canvas id="myCanvas" width="200" height="200" style="border:1px solid"> Your browser does not support the HTML5 canvas tag. </canvas> <br> <script> var c = document.getElementById("myCanvas"); var ctx = c.getContext("2d"); ctx.fillStyle = "#92B901"; ctx.fillRect(50, 50, 100, 100); function clearCanvas() { c.height = 300; } </script> <button onclick="clearCanvas()">Clear canvas</button> </body> </html>測(cè)試看看 ?/?