我正在学习HTML5。

<html>
<body>
<canvas id="canvas1" width="300" height="200"></canvas>
<script>
 var canvas = document.getElementById("canvas1");
 var cxt = canvas.getContext("2d");

 context.fillRect(0, 0, 150, 100);

</script>
</body>
</html>

如何设置此矩形的颜色?

最佳答案

ctx.fillStyle = "rgb(200,0,0)";
ctx.fillRect(0, 0, 150, 100);

fillStyle必须在fillRect之前调用
如果你还没有使用它:
https://developer.mozilla.org/en/canvas_tutorial

09-25 16:16