With the tag (tag) HTML you create a rectangular area that can be filled with graphics or animations via JavaScript. For this, a 2D context is created. You then define the desired content using different methods for the tag API .
HTML canvas: what is it?
HTML is an element that provides a drawing area in which you can create graphics or animations with JavaScript. The size of this area is defined by height and width attributes. It can be embedded anywhere on an HTML document using the HTML tag.
The content of this “web” (French translation of canvas) is not strictly speaking part of the structure of a web page, which prevents the application of CSS styles or the integration of other HTML elements. If the HTML tag is not supported by a browser, the fallback content (fallback) is displayed instead. However, modern browsers support this element by default.
Web Hosting
State-of-the-art web hosting at the best price
- 3x faster, 60% savings
- High availability >99.99%
- Only at IONOS: up to 500 GB included
HTML tag : the syntax
The HTML element does not provide design tools itself, but creates the framework within which you can draw graphics with JavaScript. The basic syntax of the element is:
You name the element with the attribute id and assign it the desired dimensions with width (width) and height (height). Optionally, you can use other parameters to specify the chart design.
The operation of explained with a simple example
Using the syntax above, you can easily create a drawing area at any time. In our example, this area will have a width of 500 pixels and a height of 250 pixels. Here is the corresponding code:
However, this method will give you nothing more than a simple blank surface. Only JavaScript allows you to fill the element generated with shapes, images, texts or gradientsand animate these objects if necessary. Content is dropped as pixels into a bitmap, which can then be converted into a graphics file PNG.
To use this item, you must use the method getElementById(). This only works if you have assigned a unique ID to the surface
const ExempleCanvas = document.getElementById("ExempleCanvas");
const ctx = ExempleCanvas.getContext("2d");
html
Now all preparations are made to use HTML ! With the function fillRect()we want to draw a simple rectangle in the defined area. This must be petrol blue in color (teal in English) and measure 200 pixels wide and 150 pixels high. We place it 10 pixels from the left edge and 50 pixels from the top edge. The whole code looks like this:
html
What is the HTML tag for? ?
While in our previous example we simply drew a rectangle, the element also allows you to create much more complex shapes. It is possible to create and integrate arcs, text boxes, transparencies, color gradients and graphics in formats GIF, JPEG And PNG. You can crop, resize and position them as you wish. In addition, JavaScript's temporal function allows you to create animations inside an HTML tag.
What dimensions are allowed for an element ?
Maximum dimensions of an HTML element
Overview of methods for the HTML API
We have already discussed creating a 2D context. With such context obtained via getContext("2d")you can draw on the surface at any time. Here is a summary of the most important API methods.
Text
| Method | Description | |
|---|---|---|
font
|
Sets the font | |
fillText()
|
Inserts entire text into the box | |
strokeText()
|
Draw the outline of a text, without filling the interior |
Picture
| Method | Description |
|---|---|
drawImage()
|
Drops an image or video into the HTML element
|
Drawing
| Method | Description | |
|---|---|---|
fillRect()
|
Draw a solid rectangle | |
strokeRect()
|
Draw an empty rectangle | |
clearRect()
|
Erase pixels inside a rectangle |
Paths
| Method | Description | |
|---|---|---|
beginPath()
|
Start a new path | |
lineTo()
|
Draw a line to the path | |
moveTo()
|
Move the path to a specific point |
Creation
| Method | Description | |
|---|---|---|
addColorStop()
|
Sets colors and positions for a gradient | |
createLinearGradient()
|
Creates a linear gradient | |
createPattern()
|
Creates a pattern from an image or other element | |
shadowBlur
|
Sets the blur for a shadow | |
shadowColor
|
Determine the color of a shadow |
Other functions
| Method | Description | |
|---|---|---|
restore()
|
Restores a previous state | |
save()
|
Saves the current state and its attributes |
HTML : example with text and color gradient
We'll use some of the methods described previously for this example. To do this, we first create a rectangle of 500 x 250 pixels via HTML tag . We then establish a 2D context. Finally, we insert a title and another sentence which receives a color gradient. The corresponding code looks like this:
Nous utilisons les méthodes strokeText() et createLinearGradient()
html
Domain name
Your domain in one click
- 1 Wildcard SSL certificate per contract
- Included Domain Connect feature for simplified DNS setup

