1
resposta

Recriei um pokebola

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

<script>

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

    pincel.fillStyle = 'lightgrey';
    pincel.fillRect(0, 0, 600, 480);

    pincel.fillStyle = 'black';
    pincel.beginPath();
    pincel.arc(300, 200, 105, 0, 2 * 3.14);
    pincel.fill();

    pincel.fillStyle = 'red';
    pincel.beginPath();
    pincel.arc(300, 200, 100, 0, 2 * 3.14);
    pincel.fill();

    pincel.fillStyle = 'white';
    pincel.beginPath();
    pincel.arc(300, 200, 100, 0, 3.14);
    pincel.fill();

    pincel.fillStyle = 'black';
    pincel.beginPath();
    pincel.arc(300, 200, 30, 0, 2 * 3.14);
    pincel.fill();

    pincel.fillStyle = 'black';
    pincel.fillRect(200, 196, 200, 12);

    pincel.fillStyle = 'white';
    pincel.beginPath();
    pincel.arc(300, 200, 20, 0, 2 * 3.14);
    pincel.fill();


</script>

E é engraçado como algumas coisas simples alegram nosso dia e mostram uma pequena grande progressão XD

1 resposta

Oi Carlos

Que incrível, ficou excelente!

A programação irá te trazer momentos com este sentimento incrível de realização.

Parabéns pelo empenho nos estudos!

Continue praticando e qualquer dúvida pode contar com a gente.