如何添加对嵌入音频的控制?

时间:2016-01-10 18:13:17

标签: html audio web controls

我在我的网站上添加了一些音乐,当你加载它时就开始了。我还想提供暂停/取消暂停的选项。我该怎么做才能添加控件?



<embed controls autostart="true" height="0" loop="true" src="URL://music-file" width="0" />
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:0)

使用HTML5

实现这一目标的一种简单方法是使用HTML5及其音频标签。

<audio controls autoplay>
       <source src="MP3 PATH" type="audio/mpeg">
        Your browser does not support the audio element.
</audio>