我正在尝试在我的网站上制作钢琴,出于某种原因,每当我点击两次音符时,第二次似乎总是从第一次开始(假设我没有完整地持续它)音频文件的长度)。我如何做到这一点,当我不止一次点击一个音符时,音频文件每次都会重启(请记住我是JavaScript的新手)。
var C3 = new Audio();
C3.src = "assets/music/C3.mp3";
div.w{
height: 282px;
width: 59px;
position: absolute;
border-style:solid;
border-width:3px;
}
div.b{
height: 141px;
width: 29.5px;
position: absolute;
background-color: #000000;
}
<div class="w" id="C3" type="button"
onmousedown="C3.play();document.getElementById('C3').style.backgroundColor='#cecece'"
onmouseup="C3.pause();document.getElementById('C3').style.backgroundColor='#ffffff'"
onmouseleave="C3.pause();document.getElementById('C3').style.backgroundColor='#ffffff'">
</div>
答案 0 :(得分:0)
您需要将currentTime
重置为0
:
var C3 = new Audio();
C3.src = "http://media.w3.org/2010/07/bunny/04-Death_Becomes_Fur.oga";
div.w{
height: 282px;
width: 59px;
position: absolute;
border-style:solid;
border-width:3px;
}
div.b{
height: 141px;
width: 29.5px;
position: absolute;
background-color: #000000;
}
<div class="w" id="C3" type="button"
onmousedown="C3.play();document.getElementById('C3').style.backgroundColor='#cecece'"
onmouseup="C3.pause();C3.currentTime = 0;document.getElementById('C3').style.backgroundColor='#ffffff'"
>
</div>