<canvas width="600" height="400"></canvas>
<script>
var tela = document.querySelector('canvas');
var pincel = tela.getContext('2d');
pincel.fillStyle = ("green");
pincel.fillRect(0, 0, 600, 400);
function flowers (y) {
function desenhaCirculo(y,cor) {
pincel.fillStyle = cor;
pincel.beginPath();
pincel.arc(x, y, 7.5, 0, 2 * Math.PI);
pincel.fill();
}
x=25;
while(x<600) {
desenhaCirculo (17.5,"pink");
desenhaCirculo (32.5,"yellow");
desenhaCirculo (47.5,"pink");
x=x+50;
}
x=11;
while(x<600) {
desenhaCirculo (32.5,"pink");
x=x+50;
}
x=40;
while(x<600) {
desenhaCirculo (32.5,"pink");
x=x+50;
}
}
flowers ();
</script>