我在这个页面上已经有了三个上下文。我在上下文 2 中有此部分,它为某些文本提供了阴影。但这也给 context2 中的其他所有内容带来了阴影,有没有办法在 context 中隔离东西?或者我应该只为这个文本创建另一个上下文,然后为我想做的下一件事创建另一个上下文?
drawArc(ctx2, 15, 30, "white", 0, 360);
ctx2.fillStyle = "rgb(80,80,80)";
ctx2.font = '24px sans-serif';
ctx2.shadowColor = "gray";
ctx2.shadowOffsetX = 2;
ctx2.shadowOffsetY = 2;
text = 'whateva';
ctx2.fillText(text, 50, 50);