xxxxxxxxxx
29
// Q2B Create 20 columns that turn red only when you hover over the column. Do it 3 ways: Without a loop. With a for loop. With a while loop.
//Make the left half turn blue, right half turn red.
let numCol = 20;
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
for(let x = 0; x<width/2 ; x+=width/numCol) {
if(mouseX>x && mouseX< x+width/numCol) {
fill('blue')}
else {fill('white')}
rect (x,0,width/numCol,height);
}
for (let x2=width/2 ; x2<width; x2+=width/numCol){
if(mouseX>x2 && mouseX< x2+width/numCol) {
fill('red')
} else {
fill ('white')
}
rect (x2,0,width/numCol,height);
}
}