我正在尝试使用HTML和CSS(没有PHP和没有JQuery)创建嵌入式动态视频背景。背景必须适合视口的整个宽度和高度。我能够创建动态视频,但现在我很难将它变成固定的背景。当我将position
更改为fixed
时,视频不是全屏。我看过无数的教程,但无法找到我正在寻找的东西。这是我到目前为止所做的:
CSS
.video-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px; height: 0; overflow: hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index:0;
}
HTML
<div class="video-container">
<iframe src="http://www.youtube.com/embed/dFVxGRekRSg" frameborder="0" width="560" height="315"></iframe>
</div>
答案 0 :(得分:0)
这对你有用吗?
<style>
.video-container{
position:absolute;
top:0;
width:100%;
height:100%;
z-index: -55;
}
#test{
color:white;
width:220px;
margin:300px auto;
}
</style>
<div class="video-container">
<iframe style="border: none" src="http://www.youtube.com/embed/dFVxGRekRSg" height="100%" width="100%" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div>
<div>
<h2 id="test">Other content</h2>
</div>