xxxxxxxxxx
17
function setup() {
createCanvas(600, 400);
}
function draw() {
let colWidth = width / 3;
for (let i = 0; i < 3; i++) { // loop minimizes repetition
if (mouseX > i * colWidth && mouseX < (i + 1) * colWidth) {
fill(255, 0, 0); // Red on hover
} else {
fill(255); // White
}
rect(i * colWidth, 0, colWidth, height);
}
}