Eu percebi que o som do botão POM não funcionava muito bem, pois ele tocava um som mais curto e com um volume muito baixo, mas depois na aula de fazer todos os botões funcionarem, nenhum funcionou, e nem mesmo o POM
Aqui está meu codigo no "main.js":
function tocaSomPom() {
document.querySelector('#som_tecla_pom').play();
}
document.querySelector('.tecla_pom').onclick = tocaSomPom;
function tocaSomClap() {
document.querySelector('#som_tecla_clap').play();
}
document.querySelector('.tecla_pom').onclick = tocaSomClap;
function tocaSomTim() {
document.querySelector('#som_tecla_tim').play();
}
document.querySelector('.tecla_tim').onclick = tim;
function tocaSomPuff() {
document.querySelector('#som_tecla_puff').play();
}
document.querySelector('.tecla_puff').onclick = tocaSomPuff;
function tocaSomSplash() {
document.querySelector('#som_tecla_splash').play();
}
document.querySelector('.tecla_splash').onclick = tocaSomSplash;
function tocaSomToim() {
document.querySelector('#som_tecla_toim').play();
}
document.querySelector('.tecla_toim').onclick = tocaSomToim;
function tocaSomPsh() {
document.querySelector('#som_tecla_psh').play();
}
document.querySelector('.tecla_psh').onclick = tocaSomPsh;
function tocaSomTic() {
document.querySelector('#som_tecla_tic').play();
}
document.querySelector('.tecla_tic').onclick = tocaSomTic;
function tocaSomTom() {
document.querySelector('#som_tecla_tom').play();
}
document.querySelector('.tecla_tom').onclick = tocaSomTom;