JavaScript Reference/Javascript Properties/balance

Материал из Web эксперт
Перейти к: навигация, поиск

"balance" Example

   <source lang="javascript">
   

<html> <head> <body> <bgsound id="mySound" src="sound.mp3" balance="0" loop="1"> <script>

   function function1() {
       document.all.mySound.src = "sound.mp3";
       document.all.mySound.balance = -10000;
       document.all.mySound.volume = -3000; 
   } 

</script> </head> <body onLoad="function1();"> <input type="button" value="balance = -10000" onClick="function1();"> </body> </html>


     </source>
   
  


"balance" is applied to

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | Applied_To |<bgsound> | +----------------+--------------------------------------------------------------+

     </source>
   
  


"balance" Syntax and Note

   <source lang="javascript">

Note: Read and write property. Controls the volume balance between the left and right speakers. Value: A number from

  -10000          all sound goes through the left speaker 
   to
   +10000         all sound goes through the right speaker
   

Syntax:

document.all.bgsoundID.balance = value


     </source>