首页 > 解决方案 > 一首歌曲完成后如何设置自动播放、循环播放和多首歌曲?

问题描述

这就是我到目前为止所做的

<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>

谢谢

标签: htmlloopsiframeplaylistautoplay

解决方案


使用<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>

<audio>在这里查看更多信息


推荐阅读