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