xxxxxxxxxx
17
function setup() {
createCanvas(400, 400);
}
function draw() {
background(0);
noStroke();
for(var i = 0; i<10; i++){
if(mouseX > (width/10*i) && mouseX < (width/10 * (i+1))){
if (i < 5){
fill(0,0,255);}else{
fill(255,0,0);}
rect(width/10*i,0,width/10,height);
}
}
}