JSFiddle - React, Tailwind, and code Playground

by vrmtm

HTML

<canvas id="canvas" width="400" height="400" style="border: 1px solid black;"></canvas>

JavaScript

var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
var canvasPos = canvas.getBoundingClientRect();

var dragging = false;

drawImage();

$(canvas).mousedown(mouseDown);
$(canvas).mouseup(mouseUp);
$(canvas).mousemove(mouseMove);

var paths = [];
var globImg = null;

function drawImage() {
    var img = new Image();
    img.src = 'http://img2.timeinc.net/health/img/web/2013/03/slides/cat-allergies-400x400.jpg';
    
    img.onload = function () {
        globImg = img;
        refresh();
    };
}

function mouseDown(e) {
    var pos = getCursorPosition(e);
                
    dragging = true;
    paths.push([pos]); // Add new path, the first point is current pos.
}
            
function mouseUp(e) {
    dragging = false;
}

function mouseMove(e) {
    var pos, i;

    if (!dragging) {
        return;
    }
    
    pos = getCursorPosition(e);
    paths[paths.length-1].push(pos); // Append point tu current path.
    
    refresh();
}

function refresh() {
    // clear canvas
    ctx.clearRect(0, 0, ctx.width, ctx.height);
    if (globImg)
        ctx.drawImage(globImg, 0, 0);
    
    for (var i=0; i<paths.length; ++i) {
        var path = paths[i];
        
        if (path.length<1)
            continue;
        
        ctx.strokeStyle = 'rgba(255, 255, 0, 0.25)';
        ctx.lineCap = 'round';
        ctx.lineJoin = 'round';
        ctx.lineWidth = 15;
        ctx.beginPath();
        ctx.moveTo(path[0].x, path[0].y);
        
        for (var j=1; j<path.length; ++j)
            ctx.lineTo(path[j].x, path[j].y);
        
        ctx.stroke();
        
    }
}

function getCursorPosition(e) {
    return {
        x: e.clientX - canvasPos.left,
        y: e.clientY - canvasPos.top
    };
}