HTML
Internet Explorer 9 , Firefox, Opera, Chrome 以及Safari 支援
附註:Internet Explorer 8 以及更早的版本不支援
定義與用法
HTML 4.01 與 HTML 5 之間的差異
實例
如何透過 canvas 元素來顯示一個紅色的矩形:
<!DOCTYPE HTML> <html> <body> <canvas id="myCanvas">your browser does not support the canvas tag </canvas> <script type="text/javascript"> var canvas=document.getElementById('myCanvas'); var ctx=canvas.getContext('2d'); ctx.fillStyle='#FF0000'; ctx.fillRect(0,0,80,100); </script> </body> </html>
以上是HTML的