xxxxxxxxxx
var x, y, r;
function setup() {
createCanvas(windowWidth, 616);
noStroke();
background('#AAD4DA');
}
function draw() {
fill(255, 255, 255)
rect(0, 560, width, 55, 7);
ellipse(100,500,150,150)
ellipse(100,425,110,110)
ellipse(100,365,85,85)
fill(0,0,0)
ellipse(88,360,5,5)
ellipse(112,360,5,5)
fill('#F57D7C')
triangle(100,370,98,379,130,368)
for(let i =0; i < 0.2; i++) {
let x = random(width);
let y = random(height/1.4);
if (random()>0.9) {
r = random(50,80)
}else{
r = random(10,30);
}
fill(255,255,255,random(10,250));
ellipse(x,y,r,r);
}
}