xxxxxxxxxx
37
/*
Comic
*/
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
// if else statement
if (mouseX > 200) {
background ("lightblue");
circle(100,100,100, height);
textSize(20);
text("Good Morning",180,100);
fill("yellow");
// evening
} else if (mouseX > 100 ) {
background ("orangered");
circle(100,200,100, height);
textSize(20);
text("Good Evening",180,200);
fill("red");
// night
} else {
background ("darkblue");
circle(100,300,100,height);
textSize(20);
text("Good Night",180,300);
fill("white");
}
}