xxxxxxxxxx
20
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
for (let x = 0; x < width; x += 20) {
if (mouseX > x && mouseX < x + 20) {
if (x < width / 2) {
fill("blue");
} else {
fill("red");
}
} else {
fill("white");
}
rect(x, 0, 40, height);
}
}