Draw a filled 150*100 pixels rectangle:
JavaScript:
![]()
Internet Explorer 9, Firefox, Opera, Chrome, and Safari support the fillRect() method.
Note: Internet Explorer 8 and earlier versions, do not support the <canvas> element.
The fillRect() method draws a "filled" rectangle. The default color of the fill is black.
Tip: Use the fillStyle property to set a color, gradient, or pattern used to fill the drawing.
| JavaScript syntax: | context.fillRect(x,y,width,height); |
|---|
| Parameter | Description | Play it |
|---|---|---|
| x | The x-coordinate of the upper-left corner of the rectangle | Play it » |
| y | The y-coordinate of the upper-left corner of the rectangle | Play it » |
| width | The width of the rectangle, in pixels | Play it » |
| height | The height of the rectangle, in pixels | Play it » |
HTML Canvas Reference
Your message has been sent to W3Schools.