xxxxxxxxxx
37
let x,y;
let d;
let mx,my;
let count=0;
let label="Happy Birthday 🎂"
let label2="Advait..."
function setup() {
createCanvas(400, 300);
background('white');
mx=width/2-100;
my=height/2;
frameRate(10);
}
function draw() {
background('white');
emojis=["🎈"]
for (let i=0;i<1000;i++){
textSize(random(10,50));
text(random(emojis),random(0,1200),random(0,1200));
}
mx=mx+random(-3,3);
my=my+random(-3,3);
fill(random(255),random(255),random(255));
textSize(40);
if(mx>0 && mx<width && my>0 && my<height){
textStyle(BOLDITALIC);
text(label,mx-50,my);
fill('black');
textSize(30);
text(label2,mx+100,my+30);
}
}