Home  >  Q&A  >  body text

javascript - H5 audio tag How to achieve continuous playback of music across pages (without restarting)

Mobile terminal development How to achieve continuous playback of music across pages (without restarting); the currentTime attribute is not easy to use. . . . . .

为情所困为情所困2610 days ago1432

reply all(2)I'll reply

  • 伊谢尔伦

    伊谢尔伦2017-05-16 13:31:47

    能不能跨页面没有摸索过, 但是咱们的页面可以用p模拟, 这样音乐能一直播放

    Reply
    0
  • PHP中文网

    PHP中文网2017-05-16 13:31:47

    两种方法
    <html>
    <frameset cols="50%,50%">

    <frame src="/log/music.html">
    <frame src="/log/index.html">

    </frameset>
    </html>
    第一个页面隐藏,播放音乐,第二个页面跳转,或者用history.pushState,跨页面加载数据
    参考 http://stackoverflow.com/ques...

    Reply
    0
  • CancelReply