如何在不破坏的情况下在网站上播放视频作为背景?

时间:2015-11-13 11:04:29

标签: html5 css3 twitter-bootstrap-3

我尝试将视频添加到我的网站作为背景视频。

但它没有顺利加载。

任何人都可以帮我解决这个问题吗?

这是我使用的代码。

<video id="bgVideo" preload="true" autoplay  loop muted poster="images/loading-landing.jpg" >
    <source src="videos/Main-Page.mp4" type="video/mp4" > 
</video>

1 个答案:

答案 0 :(得分:0)

你也可以试试..

<强> HTML

<div class="Video-bg">
    <video loop muted autoplay poster="img/videoframe.jpg" class="fullscreen-bg__video">
        <source src="video/big_buck_bunny.mp4" type="video/mp4">
    </video>
</div>

<强> CSS

.Video-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

.Video-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}