1
resposta

Bolão progressivo

<!DOCTYPE html>
<html lang="pt-br">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <canvas width="600" height="400"></canvas>

    <script>
        let tela = document.querySelector("canvas");
        let pincel = tela.getContext("2d");
        let raioAtual = 0;


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


        function gerarBolinha(evento){
            var x = evento.pageX - tela.offsetLeft;
            var y = evento.pageY - tela.offsetTop;           


            if(evento.shiftKey){
                let incremento = 10;
                raioAtual = raioAtual + incremento;                
                pincel.fillStyle="blue";
                pincel.beginPath();
                pincel.arc(x, y, raioAtual, 0, 2 * 3.14);
                pincel.fill();
            } else {
                if(raioAtual == 0){
                    pincel.fillStyle="blue";
                    pincel.beginPath();
                    pincel.arc(x, y, raioAtual+10, 0, 2 * 3.14);
                    pincel.fill();
                } else {
                    pincel.fillStyle="blue";
                    pincel.beginPath();
                    pincel.arc(x, y, raioAtual, 0, 2 * 3.14);
                    pincel.fill();
                }                
            }
        }

        tela.onclick = gerarBolinha;

    </script>

</body>
</html>
1 resposta

Olá, Geovani! Tudo bem por aí?

Mandou bem, sua solução está correta!

Caso tenha ficado com alguma dúvida não deixe de compartilhar com a gente.

Continue praticando.

Bons estudos e até mais!