-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
27 lines (23 loc) · 833 Bytes
/
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
function tocaSom(idElementoAudio){
const elemento = document.querySelector(idElementoAudio);
if (elemento && elemento.localName === 'audio'){
elemento.play();
}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 efeito = tecla.classList[1];
const idAudio = `#som_${efeito}`;
tecla.onclick = function(){
tocaSom(idAudio)
}
tecla.onkeydown = function (evento) {
if (evento.code === 'Space' || evento.code === 'Enter') {
tecla.classList.add('ativa');
tecla.onkeyup = function(){
tecla.classList.remove('ativa')
}
}