📜  如何在javascript代码示例中更改画布颜色

📅  最后修改于: 2022-03-11 15:02:52.203000             🧑  作者: Mango

代码示例1
let ctx = canvas.getContext("2d");

ctx.fillStyle = "#ff0000";
ctx.fillRect(20, 20, 150, 100);