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.
给我你的怀抱2017-07-05 11:08:56
Add playsinline webkit-playsinline preload="preload"
to the video tag
大家讲道理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>