Saturday, June 22, 2013

when mouseout starts from begieningl

<p onmouseover="PlaySound('mySound')"
    onmouseout="StopSound('mySound')">Hover Over Me To Play</p>

<audio id='mySound' src='5.mp3'/>
<script type="text/javascript">
function PlaySound(soundobj) {
    var thissound=document.getElementById(soundobj);
    thissound.play();
}

function StopSound(soundobj) {
    var thissound=document.getElementById(soundobj);
    thissound.pause();
    thissound.currentTime = 0;
}
</script>

No comments:

Post a Comment