<canvas width="600" height="400"></canvas>
<script>
var tela = document.querySelector('canvas');
var pincel = tela.getContext('2d');
pincel.fillStyle = 'lightgray';
pincel.fillRect(0, 0, 600, 400);
function desenhaCirculo(x, y, raio, cor) {
pincel.fillStyle = cor;
pincel.beginPath();
pincel.arc(x, y, raio, 0, 2* Math.PI);
pincel.fill();
}
function desenhaFlor (x, y){
desenhaCirculo(x,y+20,10, 'red');
desenhaCirculo(x,y,10, 'yellow');
desenhaCirculo(x,y-20,10, 'orange');
desenhaCirculo(x-20,y,10, 'blue');
desenhaCirculo(x+20,y,10, 'black');
}
function repeteX (x,y){
while(x < 600){
desenhaFlor(x,y);
x = x + 70;
}
}
var y = 60;
while(y < 400){
desenhaFlor(70,y);
y = y + 70;
}
var yRepete = -10;
while (yRepete <= 410){
repeteX(0, yRepete);
yRepete = yRepete + 70;
}
</script>