作品
function setup() {
createCanvas(700,700);
background(255, 255, 255);
frameRate(20);
}
function draw() {
strokeWeight(7);
stroke(frameCount % 255);
fill(255,20,147,50);
ellipse(random(width), random(width), random(10,500));
}