var drops = []; loadImage("http://images6.fanpop.com/image/photos/43400000/Giyuu-tomioka-kimetsu-no-yaiba-43462189-739-415.jpg"); var drop = function(x, y){ this.x = x; this.y = y; this.radius = 0; this.speed = random(2, 6); }; background(0, 246, 255); var draw = function() { noStroke(); fill(30, 198, 204, 40); rect(0, 0, 400, 400); noFill(); strokeWeight(4); stroke(220, 220, 255); for(var i = 0; i < drops.length; i++) { ellipse(drops[i].x, drops[i].y, drops[i].radius, drops[i].radius); drops[i].radius += drops[i].speed; } }; var mouseClicked = function() { drops.push(new drop (mouseX, mouseY)); };