1
resposta

Resultado do creeper

<meta charset="UTF-8">
<canvas width="600" height="400"></canvas>
<script>
    var tela = document.querySelector("canvas");
    var pincel = tela.getContext('2d');

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

    pincel.fillStyle = "green"
    pincel.fillRect(125, 50, 350, 300);

    pincel.fillStyle = "black"
    pincel.fillRect(175, 100, 90, 90);

    pincel.fillStyle = "black"
    pincel.fillRect(335, 100, 90, 90);

    pincel.fillStyle = "black"
    pincel.fillRect(265, 190, 70, 100);

    pincel.fillStyle = "black"
    pincel.fillRect(225, 240, 40, 110);

    pincel.fillStyle = "black"
    pincel.fillRect(335, 240, 40, 110);


</script>
1 resposta

Oi, Gabriel! Como vai?

Ótimo! Parabéns pela resolução :)

Uma dica: não há necessidade de escrever pincel.fillStyle='black'; cada vez que for desenhar um novo elemento preto, declarando uma vez a cor, os próximos desenhos ficarão com a cor escolhida. Veja:

    pincel.fillStyle = 'black';
    pincel.fillRect(100, 90, 90, 90);
    pincel.fillRect(260, 90, 90, 90);
    pincel.fillRect(190, 180, 70, 100);
    pincel.fillRect(150, 240, 40, 110);
    pincel.fillRect(260, 240, 40, 110);

Qualquer dúvida, estamos sempre por aqui!

Ótima semana e bons estudos!