问答详情
源自:2-7 游戏分值计算(2)

关于在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;


5654750c000169f904380634.jpg

5654750c0001d7c405000354.jpg


提问者:木子舟义 2015-11-24 22:33

个回答

  • 陌上_0004
    2015-12-02 10:45:11
    已采纳

    你的restore方法没有加括号

  • echo_kinchao
    2015-11-25 10:14:05

    是不是样式 权重的问题影响了