HTML
HTML <canvas> 元素
通过 <canvas> 元素来显示一个绿色的矩形
源代码:
点击运行 »
<canvas id="my-canvas"></canvas> <script> var canvas = document.getElementById('my-canvas'); var ctx = canvas.getContext('2d'); ctx.fillStyle = 'green'; ctx.fillRect(0, 0, 80, 100); </script>
运行结果:
点击运行 »