【问题标题】:Autoplay audio file cannot be disabled whatever I do无论我做什么,都无法禁用自动播放音频文件
【发布时间】:2016-12-27 20:46:36
【问题描述】:
我正在使用此代码在我的网站上合并一个音频文件,但无论我做什么,自动播放始终处于活动状态。
<embed autostart="false" type="audio/mpeg" loop="true" height="35" src="http://prefeitojuninho.com.br/site/wp-content/themes/juninho45/audio/45-sou-eu.mp3"></embed>
如何禁用自动播放?
【问题讨论】:
标签:
html
audio
embed
autoplay
【解决方案1】:
在一个函数中运行它,并且只在你想播放它时调用该函数。看起来你在全局范围内拥有它,所以它会自动播放。
【解决方案2】:
<video width="340" height="80" controls preload="none">
<source src="http://prefeitojuninho.com.br/site/wp-content/themes/juninho45/audio/45-sou-eu.mp3" type="audio/mpeg">
Your browser does not support the video tag.
</video>