1年
function setup() {
createCanvas(windowWidth,
windowHeight);
background(255, 255, 255);
}
function draw() {
noStroke();
fill(frameCount, 192 + frameCount, 128, 5);
ellipse(555, 510, frameCount);
fill(frameCount, 192 + frameCount, 128, 5);
ellipse(300, 300, frameCount);
fill(frameCount, 500 + frameCount, 128, 5);
ellipse(1300, 660, frameCount);
fill(frameCount, 192 + frameCount, 128, 5);
ellipse(5000, 1000, frameCount);
noStroke();
fill(frameCount, 255 + frameCount, 128, 5);
ellipse(1000, 50, frameCount);
}