-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
111 lines (84 loc) · 2.66 KB
/
main.js
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
//tecla Pom
/*function tocaSomPom () {
document.querySelector("#Som_Tecla_Pom").play();
}
document.querySelector(".tecla_pom").onclick = tocaSomPom;
//tecla clap
function tocaSomClap () {
document.querySelector("#Som_Tecla_Clap").play();
}
document.querySelector(".tecla_Clap").onclick = tocaSomClap;
//tecla Tim
function tocaSomTim () {
document.querySelector("#Som_Tecla_Tim").play();
}
document.querySelector(".tecla_Tim").onclick = tocaSomTim;
//tecla puff
function tocaSomPuff () {
document.querySelector("#Som_Tecla_Puff").play();
}
document.querySelector(".tecla_Puff").onclick = tocaSomPuff;
//tecla splash
function tocaSomSplash () {
document.querySelector("#Som_Tecla_Splash").play();
}
document.querySelector(".tecla_Splash").onclick = tocaSomSplash;
//tecla toim
function tocaSomToim () {
document.querySelector("#Som_Tecla_Toim").play();
}
document.querySelector(".tecla_Toim").onclick = tocaSomToim;
//tecla psh
function tocaSomPsh () {
document.querySelector("#Som_Tecla_Psh").play();
}
document.querySelector(".tecla_Psh").onclick = tocaSomPsh;
//tecla tic
function tocaSomTic () {
document.querySelector("#Som_Tecla_Tic").play();
}
document.querySelector(".tecla_Tic").onclick = tocaSomTic;
//tecla tom
function tocaSomTom () {
document.querySelector("#Som_Tecla_Tom").play();
}
document.querySelector(".tecla_Tom").onclick = tocaSomTom;
*/
//20/10 variáveis
function tocaSomTom () {
document.querySelector("#Som_Tecla_pom").play();
}
function tocaSomTom () {
document.querySelector("#Som_Tecla_clap").play();
}
function tocaSomTom () {
document.querySelector("#Som_Tecla_tim").play();
}
function tocaSomTom () {
document.querySelector("#Som_Tecla_puff").play();
}
function tocaSomTom () {
document.querySelector("#Som_Tecla_splash").play();
}
function tocaSomTom () {
document.querySelector("#Som_Tecla_toim").play();
}
function tocaSomTom () {
document.querySelector("#Som_Tecla_psh").play();
}
function tocaSomTom () {
document.querySelector("#Som_Tecla_tic").play();
}
function tocaSomTom () {
document.querySelector("#Som_Tecla_tom").play();
}
const listaDeTeclas = document.querySelectorAll('.tecla')
listaDeTeclas[0].onclick = tocaSomPom;
listaDeTeclas[1].onclick = tocaSomClap;
listaDeTeclas[2].onclick = tocaSomTim;
listaDeTeclas[3].onclick = tocaSomPuff;
listaDeTeclas[4].onclick = tocaSomSplash;
listaDeTeclas[5].onclick = tocaSomToim;
listaDeTeclas[6].onclick = tocaSomPsh;
listaDeTeclas[7].onclick = tocaSomTic;
listaDeTeclas[8].onclick = tocaSomTom;