最新回答 / 慕粉1461495807
Draw.js:2 Uncaught TypeError: Failed to execute 'drawImage' on 'CanvasRenderingContext2D': The provided value is not of type '(HTMLImageElement or HTMLVideoElement or HTMLCanvasElement or ImageBitmap)'出现这个问题怎么解决?图片地址也写了啊: var bgpic=new Image();function ga...
2016-10-18
搞了半天,解决漂浮直线和海葵不透明,在gameloop里面用cxt2画背景图片才能盖住上一帧:
function gameloop(){
cxt2.drawImage(bg,0,0);
ane.draw();
fruit.draw();
}
function gameloop(){
cxt2.drawImage(bg,0,0);
ane.draw();
fruit.draw();
}
2016-10-14
我敲出来的代码 一点没有错 鱼妈妈 就是不要跟着鼠标动 但是可以在原地转圈 查源码搞了好久 之后不明觉厉的可以跟着鼠标动了 过几分钟后又不能了 不知道为什么 到最后试着把相应代码删除再打一边然后保存运行 才可以稳定完全运行了 希望有和我类似的问题的同学 能帮到你。。。 熬夜解决这个搞得熬得好困 。。。不过蛮有意思的啊啊啊啊啊!!!!!谁能懂我。。。。。
已采纳回答 / 请叫我蜗牛小姐
ctx2.save(); ctx2.globalAlpha = 0.6; ctx2.lineWidth = 20; ctx2.lineCap = "round"; ctx2.strokeStyle = "#3b154e"; for (var i = 0; i < this.num;i++) { ctx2.beginPath(); ctx2.moveTo(this.x[i], canHeight); ctx2.lineTo(...
2016-10-09