xxxxxxxxxx
function setup() {
createCanvas(windowWidth,windowHeight)
background(56,48,46)
}
function draw() {
background(56,48,46,10)
var ct=frameCount%9
var x=map(ct,0,8,20,500)
for(var b=1;b<50;b++){
stroke("#788585")
ellipse(width/2+250,height/2+250,b*20*frameCount/30)
ellipse(width/2-250,height/2-250,b*20*frameCount/30)
ellipse(width/2-250,height/2+250,b*20*frameCount/30)
ellipse(width/2+250,height/2-250,b*20*frameCount/30)
}
for(var a=1;a<50;a++){
stroke("#9CAEA9")
ellipse(width/2+100,height/2+100,a*20*frameCount/30)
ellipse(width/2-100,height/2-100,a*20*frameCount/30)
ellipse(width/2-100,height/2+100,a*20*frameCount/30)
ellipse(width/2+100,height/2-100,a*20*frameCount/30)
}
for(var i=1;i<50;i++){
noFill()
stroke("#6F6866")
ellipse(width/2,height/2,i*20*frameCount/30)
if (frameCount>150){
frameCount=10
}
}
}