代码哪里出错了呢?不能出现七巧板
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style type="text/css">
#canvas {
border: 1px solid #CCC;
margin: 50px auto;
display: block;
/*不设置宽高的时候默认是300px宽 150px高*/
}
</style>
</head>
<body>
<canvas id="canvas"></canvas>
<script>
var tangram=[
{p:[{x:0,y:0},{x:800,y:0},{x:400,y:400}],color:'red'},
{p:[{x:0,y:0},{x:400,y:400},{x:0,y:800}],color:'black'},
{p:[{x:800,y:0},{x:800,y:400},{x:600,y:600},{x:600,y:200}],color:'red'},
{p:[{x:600,y:200},{x:600,y:600},{x:400,y:400}],color:'black'}
{p:[{x:400,y:400},{x:600,y:600},{x:400,y:800},{x:200,y:600}],color:'red'},
{p:[{x:200,y:600},{x:400,y:800},{x:0,y:800}],color:'black'}
{p:[{x:800,y:400},{x:800,y:800},{x:400,y:800}],color:'red'},
]
window.onload = function() {
var canvas = document.getElementById('canvas');
canvas.height=768;
canvas.width=1024;
if(canvas.getContext('2d')){
var content=canvas.getContext('2d');
}else{
alert('当前浏览器不支持canvas');
};
for(var i=0; i<tangram.length; i++)
draw(tangram[i],content);
}
function draw(piece,cxt){
cxt.beginPath();
cxt.moveTO(piece.p[0].x,piece.p[0].y);
for(var i=1;i<picec.p.length;i++)
cxt.lineTo(piece.p[i].x,piece.p[i],y);
cxt.closePath();
cxt.fillStyle=piece.color;
cxt.fill();
}
</script>
</body>
</html>