xxxxxxxxxx
53
// credit for images //
var dummyText = " 🍕 🍔 🍉 🥤 🍯 🍕 🍔 🍉 🥤 🍯 🍕 🍔 🍉 🥤 🍯 🍕 🍔 🍉 🥤 🍯 🍕 🍔 🍉 🥤 🍯 🍕 🍔 🍉 🥤 🍯 🍕 🍔 🍉 🥤 🍯 🍕 🍔 🍉 🥤 🍯 🍕 🍔 🍉 🥤 🍯 🍕 🍔 🍉 🥤 🍯 🍕 🍔 🍉 🥤 🍯 🍕 🍔 🍉 🥤 🍯 🍕 🍔 🍉 🥤 🍯 🍕 🍔 🍉 🥤 🍯 🍕 🍔 🍉 🥤 🍯 🍕 🍔 🍉 🥤 🍯 🍕 🍔 🍉 🥤 🍯 🍕 🍔 🍉 🥤 🍯 🍕 🍔 🍉 🥤 🍯 🍕 🍔 🍉 🥤 🍯 🍕 🍔 🍉 🥤 🍯";
var catImage;
function preload(){
CatImage = loadImage("cat.jpg");}
function mousePressed() {
save('meme.jpg'); }
function setup() {
createCanvas(400, 400);
imageMode(CENTER);
}
function draw() {
background(220);
//tint(0,mouseX,200);
image(CatImage,200,200,400,400);
image(CatImage,200,200,400,400);
fill("black")
noStroke();
rect(0,320,mouseX,80);
textSize(80)
textAlign(CENTER,TOP)
fill("black")
textFont("Comic Sans MS")
stroke("white")
textSize(50)
text("Feed me :)",200,30);
noStroke();
fill("#C3C0BB")
text("or Fight me",200,335);
var margin="12"
fill("black")
textSize(50);
textAlign(CENTER,TOP);
textLeading(mouseX); // OR PUT NUMBER //
text(dummyText,0,-100,400,400);
}