xxxxxxxxxx
15
function setup() {
// がようしをよういする
createCanvas(windowWidth, windowHeight);
noStroke();
background(63);
}
function draw() {
// たくさんのまる
x = random(200, 400);
y = random(height);
fill(random(31), random(255), random(190, 255), 100);
circle(x, y, random(2, 40));
}