xxxxxxxxxx
61
/*
Meme 1
3.8.2023
by Janae Sylvester Oliver
"Colorful Prismatic Chromatic Rainbow United States" by GDJ
https://pixabay.com/vectors/colorful-prismatic-chromatic-1331934/
*/
var usImage;
var ralphImage;
function preload(){
usImage = loadImage("colorful.png");
ralphImage = loadImage("ralph.png");
}
function setup() {
createCanvas(400,400);
}
function draw() {
background("black");
imageMode(CENTER)
image(usImage,200,200);
//image(ralphImage,150,0,0,0);
// image(ralphImage,0,0,100,200);
//image(ralphImage,0,0,400,300);
image(ralphImage,200,200,200,200);
image(ralphImage,150,150,100,100);
image(ralphImage,90,90,90,90);
image(ralphImage,90,120,50,50);
image(ralphImage,90,120,50,50);
image(ralphImage,300,250,100,100);
image(ralphImage,300,200,150,150);
image(ralphImage,250,250,100,100);
image(ralphImage,300,250,100,100);
image(ralphImage,175,250,100,100);
image(ralphImage,50,150,100,100);
image(ralphImage,30,200,100,100);
image(ralphImage,100,200,100,100);
textFont("Arial")
textSize (25)
textAlign(CENTER)
text ("HAHA We're in Danger",100,300,300,300);
stroke ('white');
strokeWeight(3);
text (" When its 70 degrees in the winter in NYC and snowing in Texas.",1,1,400,550)
}