前端之家收集整理的这篇文章主要介绍了
是否可以在html5中更改音频播放器的大小,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<音频>可以像任何其他HTML元素一样设置样式.
要增加宽度,只需使用css属性宽度.
一些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%;
}
问候
原文链接:https://www.f2er.com/html5/168358.html