【发布时间】:2019-03-20 16:19:14
【问题描述】:
我正在尝试使用 html5 视频在我的滑块中显示视频。这适用于 controls 参数(显示控件)。但是当我添加 autoplay 时,它不会自动播放,所以我搜索了为什么会这样,发现 chome 只允许静音视频自动播放。
所以我向它添加了muted 参数,但是当我这样做时,我的整个视频变黑并且仍然没有自动播放。
为什么会这样?
我的代码:
<div class="r-slider-item">
<video width="100%" height="100%" autoplay muted loop>
<source src="assets/watertuin.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="container">
<div class="r-slider-top-content">
<h1 class="animated fadeInDown">RESERVEER <span>NU</span></h1>
<a href="#" class="btn btn-outlined animated fadeInUp"> Reserveren </a>
</div>
</div>
</div>
在 Firefox 和 IE 11 中运行良好。
【问题讨论】:
-
看到这个Post他们找到了解决方案