Silence-dream / Silence-dream.github.io

blog博客
https://silence-dream.github.io
3 stars 0 forks source link

IOS自动播放 #20

Open Silence-dream opened 1 year ago

Silence-dream commented 1 year ago

js 自动播放有可能会被 IOS 拦截导致无法播放 需要用户点击播放一次,然后静音重置,再自动播放就好了

$("#xxx")[0].muted = true

setTimeout(function(){
  $("#xxx")[0].currentTime = 0
  $("#xxx")[0].muted = false
})