11

如果 html5 中的音频播放器使用音频标签生成,是否有可能改变大小。

4

1 回答 1

20

<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%;
}​

问候

于 2012-11-25T13:34:14.040 回答