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 / 20) % 2 === 0) {
fill("blue"); // Even columns turn blue
} else {
fill("red"); // Odd columns turn red
}
} else {
fill("white"); // Default color when not hovered
}
rect(x, 0, 20, height); // Draw the column
}
}