Subscribe

Getting started with the HTML canvas

✍️

Join me on my latest adventure to get to know the HTML Canvas

14 Sep, 2020 · 3 min read

My confession: I’ve never used canvas before this article. I have a fantastic idea in my head, which needs Canvas, so why not document my explorations using the HTML canvas element?

<canvas> is an HTML element used to draw graphics via JavaScript.

It can do quite a lot of cool things, including;

  • Draw shapes
  • Animations
  • Combine photos
  • User drawings

Today, we’ll get started by exploring some of it’s basic options.

It will look like this:

HTML Canvas

Creating our first HTML Canvas

To create our first canvas, we don’t need to do much:

<canvas id="canvas"></canvas>

This will create a default canvas element, which is 300x150 pixels. We can set the width and height on a canvas element or style it via CSS.

It doesn’t look like much since we haven’t rendered anything on it.

Creating our first shape on the HTML Canvas

We need to use JavaScript to get our canvas element to add our first shape.

const canvas = document.getElementById('canvas');

Now we have our basic canvas element. We need to specify its context:

const ctx = canvas.getContext('2d');

We can also get the 3D Engine, but that’s for a later article.

Ok, let’s add a square, maybe?

ctx.fillRect(50, 50, 100, 100);

We are sending the parameters (x, y, width, height).

Cool, so now we see our first rectangle!

See the Pen Getting started with the HTML canvas by Chris Bongers (@rebelchris) on CodePen.

Other shapes

There are quite a lot of shapes we can make with the Canvas;

  • Rectangles
  • Paths
  • Arcs
  • Curves (Quadratic & Bezier)

With that, we can create any shape. Here are some examples:

Canvas Circle

// Cirlce
ctx.beginPath();
ctx.arc(100, 100, 50, 0, 2 * Math.PI);
ctx.stroke();

The parameters for arc are (x, y, Radius, startingAngle, endAngle)

Canvas Triangle

// Triangle
ctx.beginPath();
ctx.moveTo(200, 75);
ctx.lineTo(100, 75);
ctx.lineTo(100, 25);
ctx.fill();

As for the move, the argument accepts the (x, y) coordinates. And the lineTo (x, y) from where ever the moveTo is set.

Canvas Heart

// Hearth
ctx.beginPath();
ctx.moveTo(75, 40);
ctx.bezierCurveTo(75, 37, 70, 25, 50, 25);
ctx.bezierCurveTo(20, 25, 20, 62.5, 20, 62.5);
ctx.bezierCurveTo(20, 80, 40, 102, 75, 120);
ctx.bezierCurveTo(110, 102, 130, 80, 130, 62.5);
ctx.bezierCurveTo(130, 62.5, 130, 25, 100, 25);
ctx.bezierCurveTo(85, 25, 75, 37, 75, 40);
ctx.stroke();

The bezierCurveTo accepts (x of control point 1, y of control point 1, x of control point 2, y of control point 2, x ending, y ending)

Find these on the following Codepen.

See the Pen Getting started with the HTML canvas - Shapes by Chris Bongers (@rebelchris) on CodePen.

Note: We will continue exploring other articles!

Browser Support

The canvas element is well supported these days and is defiantly a good option if you want to draw vectors on screen.

HTML Canvas support

Thank you for reading, and let’s connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter

Spread the knowledge with fellow developers on Twitter
Tweet this tip
Powered by Webmentions - Learn more

Read next 📖

Resetting a Form

26 Jul, 2020 · 2 min read

Resetting a Form

Detect Adblockers

22 Jul, 2020 · 2 min read

Detect Adblockers

Join 2099 devs and subscribe to my newsletter