xxxxxxxxxx
62
function preload(){
r1 =loadImage("sag1.png")
l1 =loadImage("sol1.png")
r2 =loadImage("sag2.png")
l2 =loadImage("l3.png")
body =loadImage("cc1.png")
l=0
r=1
}
let colors = ["#FFFFFF", "#ffd053"]
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
arc(210, 160, 280, 280, 0,PI)
fill(colors[0]);
rect(55, 80, 310, 80);
fill('black');
text('Antioxidant-packed',260,133);
text('ingredients like Açaí',255,144);
text('Oil and Guaraná Extract',235,157);
fill(colors[0]);
ellipse(210, 80, 310, 80);
fill(colors[1]);
text('SOL DE',62,125);
text('JANERIO',58,137);
text('Brazilian Cream',60,150);
if (mouseIsPressed){
l = random(0,100)
r = random(0,100)
}
if (l<50){
image(r1,217,189,26,30);
} else {
image(r2,218,189,30,30);
}
if (r<50){
print(r)
image(l1,161,214,35,12);
} else {
image(l2,164,214,30,23);
}
image(body,100,150,150,150);
//image(r1,217,189,26,30);
//image(r2,218,189,30,30);
//image(l1,161,214,35,12);
//image(l2,164,214,30,23);
text('This is my favorite',160,58)
text('body cream that I use every day',130,70);
text('Festive girl belove showes my joy as she dances',80,90);
text('per clicks',190,105);
}