为什么要把canvas的宽高放在draw里面,放在标签上为毛不行呢
canvas.width=1024;
canvas.height=800;
ctx.clearRect(0,0,canvas.width,canvas.height);
ctx.fillStyle="#f60";
ctx.beginPath();
ctx.moveTo(100,100);
ctx.lineTo(400,100);
ctx.lineTo(80,200);
ctx.closePath();
ctx.fill();
ctx.globalCompositeOperation=gco;
ctx.fillStyle='green';
ctx.fillRect(100,100,100,200);
}