xxxxxxxxxx
12
function setup() {
createCanvas(windowWidth, windowHeight);
noStroke();
//frameRate(12);
}
function draw() {
background('rgba(250,255,250, 0.008)');
fill(random(255),255,0);
let size=random(100);
ellipse(random(width),random(height),size,size);
}