xxxxxxxxxx
12
function setup() {
createCanvas(windowWidth, windowHeight);
background(0);
noStroke();
for(let i = 0; i < 400; i++){
let x = random(width);
let y = random(height);
let d = random(y * 0.2);
fill(random(255), random(255), random(255), 127);
ellipse(x, y, d, d);
}
}