那是我到目前为止所做的
<div>
<iframe src="/music/song1.mp3" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="1400" height="900" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen>
</iframe>
</div>
谢谢
答案 0 :(得分:0)
使用<audio>
html元素并添加autoplay loop
<audio autoplay loop controls>
<source src="/music/song1.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>