Up/Down arrow to power the record player on and off, Press mouse for a color show along with moving the mouse all around.
xxxxxxxxxx
function setup() {
createCanvas(553,400);
}
function draw() {
background(mouseX,mouseY,mouseX-mouseY);
//Record Player
fill(246, 233, 212)
rect(15,15,525,370)
fill(252, 224, 197)
circle(450,100,150)
fill(252, 224, 197)
rect(430,45,40,100,1)
fill(61, 61, 61)
rect(475,275,40,100,1)
fill(0)
if(keyCode === UP_ARROW)
fill(0,245,139)
square(475,275,40,1)
fill(0)
if(keyCode === DOWN_ARROW)
fill(245, 45, 0)
square(475,334,40,1)
textSize(15)
fill(0)
text('ON', 482,300)
textSize(15)
fill(0)
text('OFF',479,360)
fill(mouseX,mouseY,200,200,200)
square(430,75,40,20)
fill(245, 60, 57)
circle(425,350,35)
fill(245, 60, 57)
circle(375,350,35)
//CD
fill(0)
circle(200,200,350)
fill(245, 207, 69)
circle(200,200,150)
fill(0)
circle(200,200,15)
fill(225)
rect(437,100,25,100)
fill(225)
rect(313,200,150,20)
if (mouseIsPressed === true)
fill(random(255))
rect(50,175,25,70,5,5,5)
//strokeWeight(2)
//stroke(225)
//noFill();
//circle(300,200,100);
//bobby
textSize(20)
fill(222, 24, 47)
textFont('Anton')
text('BOBBY',165,150)
//valentino
textSize(8)
fill(222, 24, 47)
textFont('Georgia')
text('VALENTINO',173,160)
//credits
textSize(3)
fill(247, 252, 252)
textFont('Georgia')
text('For Promotional Use Only - Not For Sale 2005 The Island Def Jam Music Group', 140,242)
//slow down
textSize(15)
fill(222,24,47)
textFont('Georgia')
text('"SLOW DOWN"',137,235)
//No.1 rec
textSize(8)
textStyle(BOLD)
fill(247, 252, 252)
textFont('Georgia')
text('No.1 Radio',130,200)
}