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.
小伙看你根骨奇佳,潛力無(wú)限,來(lái)學(xué)PHP伐。
Add playsinline webkit-playsinline preload="preload"
to the video tag
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>