programming-examples/css/Bgsound plays a sound while the user visits the page.html
2019-11-15 12:59:38 +01:00

24 lines
654 B
HTML

<html>
<head>
<title>bgsound element example</title>
<bgsound src="soundfile.wav" loop="4">
<script language="javascript">
function stopSound() {
document.all.tags("bgsound")[0].volume = -10000;
}
function restartStop() {
document.all.tags("bgsound")[0].volume = 0;
}
</script>
</head>
<body>
test the your wav file.
<br><br><br><br><br><br>
<button type="button" onClick="stopSound()">Stop the music</button>
<br>
<button type="button" onClick="restartStop()">Restart the music</button>
</body>
</html>