Home  >  Q&A  >  body text

javascript - Is there a way to play videos in the background in iOS WeChat?

Is there a way to play the video in the background in WeChat on iOS? Currently, when the video is played and clicked to play, it will automatically cover all the page elements in full screen. I want to play it in the background.

伊谢尔伦伊谢尔伦2663 days ago960

reply all(2)I'll reply

  • 给我你的怀抱

    给我你的怀抱2017-07-05 11:08:56

    Add playsinline webkit-playsinline preload="preload" to the video tag

    reply
    0
  • 大家讲道理

    大家讲道理2017-07-05 11:08:56

    Set width and height to 0 and play automatically:

    <video width="0" height="0" autoplay>
      <source src="movie.mp4" type="video/mp4">
      <source src="movie.ogg" type="video/ogg">
    </video>

    reply
    0
  • Cancelreply