iPhone 移动浏览器屏幕上正在播放背景视频

问题描述 投票:0回答:2
css iphone html bootstrap-4
2个回答
0
投票

这里有同样的问题,但我解决了这个问题,在视频标签上添加

playsInline
webkit-playsinline
,并记住,不要添加
controls
标签。该解决方案在容器内播放视频,例如:

<video autoPlay loop muted playsInline webkit-playsinline>
  <source src="path/to/your/video" type="video/mp4" />
</video>

问候:)


-1
投票

使用此链接:

您应该使用 css 来修复背景中的视频,请参阅此处:

https://slicejack.com/fullscreen-html5-video-background-css/

演示: http://dev2.slicejack.com/fullscreen-video-demo/index.html

© www.soinside.com 2019 - 2024. All rights reserved.