我在我的网站上添加了一些音乐,当你加载它时就开始了。我还想提供暂停/取消暂停的选项。我该怎么做才能添加控件?
<embed controls autostart="true" height="0" loop="true" src="URL://music-file" width="0" />
&#13;
答案 0 :(得分:0)
实现这一目标的一种简单方法是使用HTML5及其音频标签。
<audio controls autoplay>
<source src="MP3 PATH" type="audio/mpeg">
Your browser does not support the audio element.
</audio>