1
resposta

SOLUÇÃO - SHIFT

    <canvas width="600" height="400"></canvas>

    <script>
    var tela = document.querySelector('canvas');
    var pincel = tela.getContext('2d');

    pincel.fillStyle = 'grey';
    pincel.fillRect(0, 0, 600, 400);

    function desenhaCirculo(evento) {

        var x = evento.pageX - tela.offsetLeft;
        var y = evento.pageY - tela.offsetTop;
        console.log(x + ',' + y);

        if (evento.shiftKey) {

        pincel.fillStyle = 'blue';
        pincel.beginPath();
        pincel.arc(x, y, 20, 0, 2 * 3.14);
        pincel.fill();
        } else {

        pincel.fillStyle = 'blue';
        pincel.beginPath();
        pincel.arc(x, y, 10, 0, 2 * 3.14);
        pincel.fill();
        }   
    }

    tela.onclick = desenhaCirculo;

    </script>
1 resposta

Olá, Daniel! Como vai?

Mandou bem! Parabéns!

Ficou com alguma dúvida durante a resolução?

Caso tenha ficado não deixe de compartilhar com a gente.

Continue praticando, bons estudos e até mais! =)