是否可以在html5中更改音频播放器的大小

前端之家收集整理的这篇文章主要介绍了是否可以在html5中更改音频播放器的大小前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > html 5 audio tag width4个
如果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

猜你在找的HTML5相关文章