xxxxxxxxxx
56
let img, img2, img3, img4, img5, img6, img7, img8;
function preload(){
img = loadImage("hp.png");
img2 = loadImage("tshirt.png");
img3 = loadImage("bg2.jpg");
img4 = loadImage("text1.png");
img5 = loadImage("text2.png");
img6 = loadImage("text3.png");
img7 = loadImage("text4.png");
img8 = loadImage("text5.png");
}
function setup() {
createCanvas(400, 400);
background(0);
noStroke();
frameRate(10);
}
function draw() {
image(img3,0,0,width,height);
image(img2,0,0,width,height);
image(img,100,100,200,200);
image(img4,100,30,200,200);
image(img5,55,-40,300,300);
image(img6,120,220,150,150);
image(img7,60,160,300,300);
image(img8,60,205,300,300);
fill(random(150,255),random(150),0);
circle(165,200,10);
circle(240,200,10);
fill(random(150,255),random(150),0,random(100));
circle(240,200,random(30,60));
circle(165,200,random(30,60));
fill(random(150),random(200),0);
circle(248,240,5);
circle(153,241,5);
circle(183,252,7);
circle(201,260,7);
circle(217,252,7);
}