大家好日子! 我有一个关于背景视频的问题,我将它附加到整个页面,但需要它只是嵌入在顶部。谁能告诉我这是什么问题? 非常感谢! 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;
}
}
答案 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>