关于在ctx1上添加阴影的问题(含图片 代码)
我在ctx1上添加了阴影效果后
为什么整个画布的每一个都有了阴影 包括ctx2上也有了
ctx1.save();
ctx1.shadowBlur= 10;
ctx1.shadowColor ='#fff';
ctx1.textAlign = 'center';
ctx1.font = "bold 50px serif";
ctx1.fillText("Score:"+this.score,canWidth/2,70);
if(this.gameOver){
this.alpha += deltaTime * 0.0005;
if(this.alpha > 1){
this.alpha = 1;
}
ctx1.fillStyle = 'rgba(255,255,255,' + this.alpha +')';
ctx1.fillText("GameOver",canWidth/2,canHeight/2);
}
ctx1.restore;