Chrome html-video隐藏开始播放,直到我滚动页面

时间:2012-11-12 09:00:07

标签: html html5 html5-video

我已经建立了一个网站,试图将视频作为大背景图像播放。该元素在我开始滚动之前是不可见的。我没有javascript。

<!DOCTYPE html>

<video class="background_video" poster="video/rain.jpg" autoplay muted="true" preload="auto" >
  <source type="video/mp4" src="video/rain.mp4">
  <source type="video/ogv" src="video/rain.ogv">
  <source type="video/webm" src="video/rain.webm">
</video>

1 个答案:

答案 0 :(得分:2)

似乎是chrome的一个错误并使用了poster属性。在回复中发现js就是这个伎俩。

video disappears when poster attribute and preload is defined