參考網址:
是否可以在html5中更改音頻播放器的尺寸
<audio>
可以作爲任何其他html元素的樣式。
要增加寬度,只需使用css屬性width
。
一些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>
而CSS:
#player { width: 100%; }