xxxxxxxxxx
25
//background'u setup'a yada draw'a koy!
var circleX= 50;
var circleY=300;
function setup() {
createCanvas(600, 400);
background(255,204,204);
}
function draw() {
//background(255,204,204);
noStroke()
fill(255,102,102)
ellipse(circleX,100,50,50)
circleX=circleX+1
fill(204,255,255)
ellipse(mouseX,mouseY,100,100)
fill(255,255,204)
ellipse(circleY,100,70,70)
circleY=circleY-1
}
function mousePressed(){
background(204, 255, 153);
}