SketchBook

Stand by you.

function setup(){
createCanvas (windowWidth,windowHeight);
background(255,255,250) ;
frameRate(2);
noStroke();
noFill();
}

function draw(){
fill(0,0,0);
textSize(
30,30);
text("touch me",100,100);
fill(0,0,0);
textSize(
30,30);
text("Have a relaxing day!!",100,140);
fill(0,0,0);
textSize(20,20);
text("You can do it!",100,180);


if(mouseIsPressed){



noStroke();
fill(random(250,0),random(250,0),random(250,0),80);
rect(mouseX,mouseY, 100,100);
}
}

Author: takamatsu