width屬性以像素為單位指定 <canvas>元素的寬度,使用width 屬性以像素為單位指定 <canvas>元素的寬度。
高度和寬度為200像素的 <canvas> 元素:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>HTML <canvas> width 屬性使用-菜鳥(niǎo)教程(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
所有主流瀏覽器都支持 width 屬性。
注意: Internet Explorer 8 及更早IE版本不支持 <canvas> 標(biāo)簽。
width屬性以像素為單位指定<canvas>元素的寬度。
提示:使用width 屬性以像素為單位指定<canvas>元素的寬度。
提示: 每當(dāng)畫(huà)布的高度或?qū)挾缺恢卦O(shè)時(shí),畫(huà)布內(nèi)容就會(huì)被清空(請(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 width="pixels">
Value | Description |
---|---|
pixels | 指定 canvas 的 width屬性, 以像素計(jì)(如"100")。 默認(rèn) width 為 "300" |
通過(guò)設(shè)置width或height屬性(使用JavaScript)清除畫(huà)布:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>HTML <canvas> width 屬性使用-菜鳥(niǎo)教程(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è)試看看 ?/?