答案 0 :(得分:0)
1将图像添加到html body标记
<BODY background='http://127.0.0.1/bg.jpg'>
2从javascript中删除这些行
ctx.fillStyle = "black";
ctx.fillRect(0, 0, W, H);
答案 1 :(得分:0)
在javascript上加载图片
var background = new Image();
background.src = "http://127.0.0.1/bg.jpg";
然后替换行
ctx.fillStyle = "black";
ctx.fillRect(0, 0, W, H);
与
ctx.drawImage(background,0,0);