1
<canvas id="myCanvas" width="300" height="150" style="border:1px solid #d3d3d3;">
2
您的浏览器不支持 HTML5 canvas 标签。
3
</canvas>
4
<script>
5
var c = document.getElementById("myCanvas");
6
var ctx = c.getContext("2d");
7
ctx.beginPath();
8
ctx.moveTo(20, 20);
9
ctx.lineTo(20, 100);
10
ctx.lineTo(70, 100);
11
ctx.closePath();
12
ctx.stroke();
13
ctx.fillStyle = "red";
14
ctx.fill();
15
</script>