xxxxxxxxxx
35
// "Oppenheimer Star Cillian Murphy Says Playing Father of Atomic Bomb Both 'Terrifying and Exciting'" image by Josh Weiss https://money.yahoo.com/oppenheimer-star-cillian-murphy-says-184316651.html?guccounter=1&guce_referrer=aHR0cHM6Ly93d3cuZ29vZ2xlLmNvbS8&guce_referrer_sig=AQAAACDtyWfpZp7AbIikjaWjYZNsV1za3-WB4LUuNHsHAZNA-iXO58olI0JXTXvuO1gMkmFqFwHPy9oXLeChjoC9MXxTC5llQb0OTReY_0IDpnYKcEpgkmmtsV2SlIlspdyn3JEtX5wOKShBcMOIZYryAQ8C-X0kcDHNqeOUB08mFRL3
var OpenImage;
function preload() {
OpenImage = loadImage("Open.jpg.jpg");
}
function setup() {
createCanvas(680, 540);
imageMode(CENTER);
}
function draw() {
background(220);
// tint(0, mouseX, 200);
image(OpenImage, 300, 200);
fill('white')
rect(0, 450, 700);
textSize(30);
textAlign(CENTER, TOP);
fill('black');
textFont("Montserrat");
textStyle('bold')
text("Having 100 plus lines of code....with", 350, 460);
textSize(28);
text("one error on line 27 that's completely empty", 340, 500);
textSize(45);
fill('white');
stroke('black');
text("Please Help!",mouseX, mouseY,);
}