xxxxxxxxxx
17
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
for (let i = 0; i < 400; i += 20) {
if (mouseX > i && mouseX < i + 20) {
fill(random(255),random(255),random(255));
} else {
fill("white");
}
rect(i, 0, 20, height);
}
}