html – 在后台的网页中播放声音文件

前端之家收集整理的这篇文章主要介绍了html – 在后台的网页中播放声音文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在我的网页上播放声音文件(不要媒体播放器UI出现),我的网站将在Fire-Fox上运行,我使用了Embed元素并设置了Hidden属性为true< embed name =“myMusic”src =“Masgon.mp3”type =“audio / midi”
autostart =“false”Hidden =“true”loop =“true”>< / embed>
问题是没有声音播放,除非我删除了这个案例上的隐藏属性声音文件播放,媒体播放器UI出现,但我不想要.

解决方法

<audio src="/music/good_enough.mp3">
<p>If you are reading this,it is because your browser does not support the audio element.     </p>
</audio>

如果你想要控件

<audio src="/music/good_enough.mp3" controls>
<p>If you are reading this,it is because your browser does not support the audio element.</p>
</audio>

并且还使用embed

<embed src="/music/good_enough.mp3" width="180" height="90" loop="false" autostart="false" hidden="true" />
原文链接:https://www.f2er.com/html/230358.html

猜你在找的HTML相关文章