3
テキストが同じ場所に2回以上書き込まれると、テキストが暗くなります。どうして?Canvasに書き込まれたテキストが同じ場所に2回書き込まれると、なぜ暗くなりますか?
var txt = "The cat is on the mat";
var ctx = c.getContext("2d");
ctx.font = "15px Lucida Sans Unicode";
ctx.fillText(txt,10,50);
ctx.fillText(txt,10,50); // again
ctx.fillText(txt,10,100);