背景视频css(非全屏)
Posted
技术标签:
【中文标题】背景视频css(非全屏)【英文标题】:background video css (not fullscreen) 【发布时间】:2016-10-24 08:10:48 【问题描述】:大家好! 我有一个关于背景视频的问题,我将它附加到整个页面,但只需要将它嵌入到顶部。谁能告诉我有什么问题? 非常感谢! 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;
【问题讨论】:
需要在顶部嵌入方式吗? 【参考方案1】:首先删除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>
【讨论】:
【参考方案2】:位置是固定的,因此它将固定到整个页面。使用position: absolute;
也可以改变高度和宽度。
【讨论】:
以上是关于背景视频css(非全屏)的主要内容,如果未能解决你的问题,请参考以下文章