实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<html>
2
<body>
3
4
<canvas id="myCanvas">Your browser does not support the HTML5 canvas tag.</canvas>
5
6
<script>
7
var c=document.getElementById('myCanvas');
8
var ctx=c.getContext('2d');
9
ctx.fillStyle='#FF0000';
10
ctx.fillRect(0,0,80,100);
11
</script>
12
13
</body>
14
</html>
15