xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
//background(100);
}
function draw() {
background(230,158,64);
for(let x=0;x<700;x=x+50){
stroke(13,54,39);
strokeWeight(5);
fill(225,230,145,50);
circle(width/2+ map(x, 0, height, 0, mouseX-width/2),height/2+map(x,0,height,0,mouseY-height/2),map(x,0,height,height,0));
}
for(x=0;x<1000;x=x+20){
stroke(11,29,100,0);
strokeWeight(12);
fill(random(0,255),random(0,255),random(0,255),100);
ellipse(random(0,width),random(0,height),random(0,150),random(0,150));
}
}