xxxxxxxxxx
36
var diam1 =0;
function setup() {
createCanvas(500, 500);
}
function draw() {
background("#003366");
fill("#add8e6");
stroke("#ffff00");
strokeWeight(5);
ellipse(250,250,diam1,diam1);
fill("#f58af1");
noStroke();
rect(mouseX,mouseY, 40,40);
textSize(30);
textAlign(CENTER);
fill("#ffffff");
text("Click here?", 250,40)
}
function mousePressed(){
if(diam1>495){
diam1=0;
}else{
diam1=diam1+25;
}
}