Draw on HTML5 Canvas using a mouse
Get mouse drawing on a canvas up and running quickly with just a few lines of JavaScript. It's as simple as:
- Constructing the canvas:
- Establishing mouse event handlers for drawing:
Click and drag on the canvas to see your art materialize with real-time visual feedback. Make your masterpiece unique by setting attributes such as ctx.lineWidth
or ctx.strokeStyle
.
Beefing up the drawing experience
Let's take things up a notch and add some advanced features and slick enhancements to our basic drawing tool.
Introducing customization options
Add a slick color picker and a line width adjuster:
Match the drawing color and line width with the selected options:
Save the artwork
Provide a save button for the artists to cherish their masterpiece:
Trigger the download when the button is clicked:
Revisions and corrections
We all make mistakes, so let's add an eraser:
Switch the stroke style to the background color or make it transparent when the eraser is clicked:
Don't forget to switch back to normal drawing mode:
Electrical Wiring 101: Bundling your code in a class
"All the world's a stage" and so is our class called SignTool where most of our play takes place:
Creating responsive apps that adjust to all stage sizes is all the rage now:
Does ctx.lineJoin
and ctx.lineCap
ring a bell? They're your best friends in crafting smooth lines. Brush up your skills with ctx.createPattern()
and ctx.createLinearGradient()
. Feeling adventurous? Try pressure.js
to simulate pressure levels.
Was this article helpful?