xxxxxxxxxx
136
//Audios: Youtube
//The Black Eyed Peas- the time
//The kid LaROI, Justin Bieber- Stay
//Rafaella Carra - Pedro
//variable
var x =200;
var y =200;
var speed = 2;
//audios
function preload() {
redButton = loadSound("Pedro.mp3");
blueButton = loadSound("audio1.mp3");
orangeButton = loadSound("audio2.mp3");
}
function keyPressed() {
if (keyCode == 71) {
//"g"
redButton.play();
}
if (keyCode == 66) {
//"b"
blueButton.play();
}
if (keyCode == 89) {
//"y"
orangeButton.play();
}
}
function setup() {
createCanvas(600, 600);
r = random(0,259);
g = random(0,259);
b = random(0,259);
}
function draw() {
background("yellow");
//audio mixer
noStroke();
fill("black");
rect(25,75,550,450,5);
fill(247,247,230);
rect(50,100,500,400,5);
//audio mixer buttons
fill("red");
rect(100,250,100,100,5);
fill("blue");
rect(245,250,100,100,5);
fill("orange");
rect(390,250,100,100,5);
fill(r,g,b);
rect(80,110,440,130,150);
if(frameCount % 0 ==0);{
r = random(0,259);
g = random(0,259);
b = random(0,259);
}
//buttons
fill("black");
circle(450,450,50);
push();
stroke(255);
noFill();
arc(450,450,30,30,0, PI + QUARTER_PI);
pop();
fill("black");
circle(150,450,50);
push();
stroke(255);
noFill();
arc(150,450,30,30,0, PI + QUARTER_PI);
pop();
//Text
//VOL,MIN,MAX
textSize(11);
text("Vol", 445, 490);
fill("black");
//VOL,MIN,MAX
textSize(11);
text("Vol", 150, 490);
fill("black");
//loading
textSize(101);
text("Loading...", 100, 199);
fill("black");
}