'bgsound' plays a sound while the user visits the page : bgsound « Tags « HTML / CSS






'bgsound' plays a sound while the user visits the page

 
    

<html>
   <head>
      <title>bgsound element example</title>
      <bgsound src="yoursoundfile.wav" loop="3">
      <script language="javascript">
          function stopSound() {
               document.all.tags("bgsound")[0].volume = -10000; 
          } 
          function restartStop() {
               document.all.tags("bgsound")[0].volume = 0;
          } 
      </script>
   </head>
   <body>
   Please use your own wav file to test the code.
   <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>
           
      
        
  








Related examples in the same category

1.'volume' indicates the sound clip volume
2.'balance' Example