HTML CSS Reference/HTML Attributes Reference/volume

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

"volume" Example

   <source lang="html4strict">
   

<HTML> <head> <bgsound src="yoursoundfile.wav" balance="0" loop="1" volume="-500"> </head> <BODY> </BODY> </HTML>


     </source>
   
  


volume is applied to

   <source lang="html4strict">

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

     </source>
   
  


"volume" Syntax and Note

   <source lang="html4strict">

Note:

This attribute indicates the sound clip volume. Its value is an integer from -10,000 to 0. A larger value plays the sound clip louder (for example, -500 is louder than -10,000).

Syntax:

<bgsound volume="value">


     </source>