xxxxxxxxxx
66
let x, y;
let circleY = [50, 100, 150, 200, 250];
function setup() {
createCanvas(500, 500);
x = width * 2;
y = height;
noStroke();
rectMode(CENTER);
}
for (let i = 0; i < 5; i++) {
let circleX = 50 * (i + 1);
function draw() {
background(230, 50, 0, 70);
function draw() {
circle(circleX, circleY[i], 25);
circleY[i]++;
if (circleY[i] > height) {
circleY[i] = 0;
}
}
}
fill(25, 20,130, 20);
rect(x, y, 150, 150);
fill(20, 30, 120, 20);
rect(x, y, 125, 125);
fill(15, 40, 110, 20);
rect(x, y, 100, 100);
fill(10, 50, 100, 20);
rect(x, y, 75, 75);
fill(5, 60, 90, 20);
rect(x, y, 50, 50);
fill(0, 70, 80, 20);
rect(x, y, 25, 25);
y = y - 1;
x = x + 1;
if (x > 600) {
x = -100;
}
if (x < -100) {
x = x + 1;
}
if (y < -200) {
y = 600;
}
}