xxxxxxxxxx
16
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
for(let i=0; i<10; i++) {
if (mouseX >= (i * width) / 10 && mouseX < (i*width)/10) {
fill ("red")
elsefill("white")
}
rect((i*width)/10,0, width/10, 400)
}
}