视频背景未在Chrome中显示

时间:2018-06-28 22:21:20

标签: javascript html css google-chrome

这是我体内的html
此代码用于覆盖div并在顶部覆盖的视频。我可以使用帮助,因为视频未显示在Chrome中。我尝试使用webm。文件和ogv,但无法正常工作。 感谢所有帮助。

 <section>
<div class="jumbotron jumbotron-fluid" id="hero">
  <div class="container">

    <h3 class="hero-subtitle">Lorem Ipsum</h1>
    <p class="hero-content">The main content goes here </p>
        <br>
        <h6 class="hero-excerpt">subtitle </h6>
  </div>
</div>
</section>

css页面

#hero {
min-height: 70vh;
background:
/* top, transparent red, faked with gradient */
linear-gradient(
rgba(0, 0, 0, 0.85),
rgba(0, 0, 0, 0.45)
),
/* bottom, image */
url('background_video.mp4');

background-position: center;
background-repeat: no-repeat;
background-size: cover;
color: white;
.hero-subtitle {
font-size: 2rem;
font-weight: 300;
line-height: 1.2;
}
.hero-content{
font-size: 1.25rem;
font-weight: 300;
}
.hero-excerpt{
font-size: 1rem;
font-weight: 300;
}
}

1 个答案:

答案 0 :(得分:0)

url('background_video.mp4')

您不能直接将视频文件用作背景图像。将url css data type用于background样式时,将设置为background-image属性。因此,该属性的网址需要指向图片,而不是视频文件。

跨浏览器解决方案

如果要将视频作为某些元素的背景播放,则需要将其放入包含所需内容的容器中。用positioning it with position:absolute覆盖它并设置适当的z-indexes

.container {
  position:relative;
  width:320px;
  height:180px;
}

.container video {
  position:absolute;
  width:320px;
  height:180px;
  left:0px;
  top:0px;
  z-index:1;
}

.container .content {
  position:relative;
  width:320px;
  height:180px;
  z-index:2;
  background-color:rgba(0,0,0,0.7);
  color:white;
  line-height:180px;
  text-align:center;
}
<div class="container">
  <video autoplay muted src="http://download.blender.org/peach/bigbuckbunny_movies/BigBuckBunny_320x180.mp4"></video>
  <div class="content">Some content</div>
</div>

仅Firefox(截至2018年6月)

在firefox中,您可以将另一个元素用作background-image,因此在这种情况下,您可以将<video>元素用作背景。使用浏览器前缀函数element()。传递元素的css id选择器时,将使用该元素作为背景

#content {
  width:320px;
  height:180px;
  background-image:-moz-element(#backgroundvideo);
  line-height:180px;
  text-align:center;
  color:white;
}
<video style="display:none;" autoplay muted id="backgroundvideo" src="http://download.blender.org/peach/bigbuckbunny_movies/BigBuckBunny_320x180.mp4"></video>
<div id="content">Some content</div>