xxxxxxxxxx
47
//Sketch By KaiSiang Sin
function setup() {
createCanvas(600, 850);
}
function draw() {
noStroke()
translate(10,10)
scale(3)
background(225, 95,5,20);
textSize(5);
text('24400', 5, 5);
text('The letter H', 160, 5);
fill(random(255), 255, 255);
for (let i = 0; i< frameCount%5; i++) {
noFill()
stroke(225)
strokeWeight(10)
ellipse(50,50,frameCount%50,40*i*0.2)
ellipse(50,80,frameCount%50,40*i*0.2)
ellipse(50,110,frameCount%50,40*i*0.2)
ellipse(50,140,frameCount%50,40*i*0.2)
ellipse(50,170,frameCount%50,40*i*0.2)
ellipse(80,110,frameCount%50,40*i*0.2)
ellipse(110,110,frameCount%50,40*i*0.2)
ellipse(140,50,frameCount%50,40*i*0.2)
ellipse(140,80,frameCount%50,40*i*0.2)
ellipse(140,110,frameCount%50,40*i*0.2)
ellipse(140,140,frameCount%50,40*i*0.2)
ellipse(140,170,frameCount%50,40*i*0.2)
}
}