背景视频css(不是全屏)

时间:2016-06-22 11:45:31

标签: css html5 html5-video

大家好日子! 我有一个关于背景视频的问题,我将它附加到整个页面,但需要它只是嵌入在顶部。谁能告诉我这是什么问题? 非常感谢! HTML:

<video autoplay loop poster="video-bg.jpg" id="bgvid">
    <source src="video-bg.webm" type="video/webm">
    <source src="video-bg.mp4" type="video/mp4">
</video>

CSS:

video#bgvid { 
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: url(video-bg.jpg) no-repeat;
    background-size: cover; 
}
@media screen and (max-device-width: 800px) {
    html {
         background: url(video-bg.jpg) #000 no-repeat center center fixed;
    }
    #bgvid {
        display: none;
    }
}

2 个答案:

答案 0 :(得分:0)

位置是固定的,因此它将固定在整个页面上。使用position: absolute; 也可以更改高度&amp;宽度。

答案 1 :(得分:0)

首先删除min-width/height: 100%;
transform: translateX(-50%) translateY(-50%);替换transform: translateX(-50%);只能水平移动元素
最后将top: 50%;更改为top: 0;

如果您希望在滚动页面时同时滚动视频,请将position: fixed替换为position: absolute;

#bgvid {
  background: none #aaa !important;
  text-align: center;
  width: 300px;
  height: 150px;
}
#bgvid {
    position: fixed;
    top: 0;
    left: 50%;
    /*min-width: 100%;*/
    /*min-height: 100%;*/
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -100;
    background: url(video-bg.jpg) no-repeat;
    background-size: cover; 
}
@media screen and (max-device-width: 800px) {
    html {
         background: url(video-bg.jpg) #000 no-repeat center center fixed;
    }
    #bgvid {
        display: none;
    }
}
<div id="bgvid">VIDEO HERE</div>