-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
40 lines (28 loc) · 1.01 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
// Pom ----------------------------------------
function tocaSom (seletorAudio) {
const elemento = document.querySelector(seletorAudio);
if(elemento != null && elemento.localName ==='audio'){
elemento.play();
console.log('Você tocou a tecla ' + seletorAudio.substring(11));
}else{
console.log('Elemento não encontrado ou seletor inválido')
}
}
const listaDeTeclas = document.querySelectorAll('.tecla');
for(let contador= 0; contador < listaDeTeclas.length;contador++){
const tecla = listaDeTeclas[contador];
const instrumento = listaDeTeclas[contador].classList[1];
const idAudio = `#som_${instrumento}`;
tecla.onclick = function(){
tocaSom(idAudio);
};
tecla.onkeydown = function (evento) {
if(evento.code === "Enter" || evento.code === "Space") {
tecla.classList.add('ativa');
console.log(evento)
}
}
tecla.onkeyup = function () {
tecla.classList.remove('ativa');
}
}