全屏视频 iOs 设备
Full-Screen Video iOs Devices
我想在我的网站上制作全屏视频,但在 iphone 上观看它会将我重定向到视频,有没有办法在同一页面上播放视频?
<video poster="poster.jpg" preload autoplay loop>
<source src="vimeo.mp4" type="video/mp4">
To get the best experience of this website please consider <a href="https://browser-update.org/update.html">updating your web browser</a>
</video>
~
<video <video poster="poster.jpg" preload autoplay loop playsinline>
<source src="vimeo.mp4" type="video/mp4">
To get the best experience of this website please consider <a href="https://browser-update.org/update.html">updating your web browser</a>
</video>
你可以简单地在视频标签中添加“playsinline”属性,你也可以包括“webkit-playsinline”
我想在我的网站上制作全屏视频,但在 iphone 上观看它会将我重定向到视频,有没有办法在同一页面上播放视频?
<video poster="poster.jpg" preload autoplay loop>
<source src="vimeo.mp4" type="video/mp4">
To get the best experience of this website please consider <a href="https://browser-update.org/update.html">updating your web browser</a>
</video>
~
<video <video poster="poster.jpg" preload autoplay loop playsinline>
<source src="vimeo.mp4" type="video/mp4">
To get the best experience of this website please consider <a href="https://browser-update.org/update.html">updating your web browser</a>
</video>
你可以简单地在视频标签中添加“playsinline”属性,你也可以包括“webkit-playsinline”