xxxxxxxxxx
19
function setup() {
createCanvas(400, 400);
}
function draw() {
background(255);
let w = width / 20;
let i = 0;
while (i < 20) {
if (mouseX > i * w && mouseX < (i + 1) * w) {
fill('red');
} else {
fill(255);
}
rect(i * w, 0, w, height);
i++;
}
}