Javascript examples for Canvas Reference:fillRect
The fillRect() method draws a filled rectangle. The default color is black.
context.fillRect(x, y, width, height);
Parameter | Description |
---|---|
x | The x-coordinate of the rectangle upper-left corner |
y | The y-coordinate of the rectangle upper-left corner |
width | The width of the rectangle, in pixels |
height | The height of the rectangle, in pixels |
The following code shows how to draw a filled 150*100 pixels rectangle:
<!DOCTYPE html> <html> <body> <canvas id="myCanvas" width="300" height="250" style="border:1px solid #d3d3d3;"> Your browser does not support the HTML5 canvas tag.</canvas> <script> var c = document.getElementById("myCanvas"); var ctx = c.getContext("2d"); ctx.fillRect(20, 20, 150, 100);/*from www .j a va 2 s . c om*/ </script> </body> </html>