You can change the size of the audio player in html5

Is it possible to change the size if the audio player in html5 is created using an audio tag.

+7
source share
1 answer

<audio> can be styled like any other html element.

To increase the width, just use the css width property.

Some html:

 <audio id="player" controls autoplay>  <source src="http://xseignard.github.com/webGLWebAudioAPI/sound/OGLikeCapone.ogg" type="audio/ogg">  Your browser does not support the audio tag. </audio>​​​ 

And css:

 #player { width: 100%; }​ 

Hi

+15
source

All Articles