-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
62 lines (61 loc) · 1.88 KB
/
index.js
File metadata and controls
62 lines (61 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*document.querySelectorAll("button")[0].addEventListener("click", gotClicked);
document.querySelectorAll("button")[1].addEventListener("click", gotClicked);
document.querySelectorAll("button")[2].addEventListener("click", gotClicked);
document.querySelectorAll("button")[3].addEventListener("click", gotClicked);
document.querySelectorAll("button")[4].addEventListener("click", gotClicked);
document.querySelectorAll("button")[5].addEventListener("click", gotClicked);
document.querySelectorAll("button")[6].addEventListener("click", gotClicked);*/
alert("Pls Refresh the page before going to another song or if anything happens goodluck you can mashup also😁😊😁");
alert("click on the songs and feel the magic");
var le=document.querySelectorAll(".drum");
for(var i=0;i<le.length;i++)
{
document.querySelectorAll("button")[i].addEventListener("click", function(){
var key=this.innerHTML;
gotClicked(key);
});
}
function gotClicked(key)
{
switch(key){
case "w":
var tom1 = new Audio("sounds/Ajj Din Chadheya.mp3");
tom1.play();
if(count===2)
{
tom1.pause();
}
break;
case "a":
var tom2 = new Audio("sounds/Dil Mere.mp3");
tom2.play();
break;
case "s":
var tom3 = new Audio("sounds/Dildaara.mp3");
tom3.play();
break;
case "d":
var tom4 = new Audio("sounds/Hamdard.mp3");
tom4.play();
break;
case "j":
var kick = new Audio("sounds/Kun Faya Kun.mp3");
kick.play();
break;
case "k":
var crash = new Audio("sounds/Soch Na Sake.mp3");
crash.play();
break;
case "l":
var snare = new Audio("sounds/Tum Se Hi.mp3");
snare.play();
break;
default:
alert("error");
}
//var audio = new Audio("sounds/tom-1.mp3");
//audio.play();
}
document.addEventListener("keypress", function(event){
gotClicked(event.key);
});