限制标题背景视频的高度?

时间:2018-08-22 10:53:42

标签: css video background fullscreen

我正在制作 标头中的背景视频。标头的高度仅为100%-257px,以便在加载页面时可以看到页面的其余部分。 但是,我无法在标题的 中将视频设为完整背景。全尺寸时,它总是溢出标头容器。我是否缺少一些CSS? 非常感谢您的帮助!

HTML:

<header id="home">
        <div id="videoBackground">
            <video loop="loop" playsinline="playsinline" autoplay="autoplay" muted="muted" poster="Images/posterImg.png" id="videoBackgroundVideo">
                <source type="video/mp4" src="Images/BillVid.mp4">
            </video>    
        </div>
        <h1> This is a title</h1>
        <h2> This is a subtitle</h2>
        <div id="welcomeMessage">
            <h3> Welcome at <span>My Page</span></h3>
            <img src="Images/LogoRoundWhite.png" id="homeLogoWhite" style="border-style:none;" />
        </div>
    </header>

CSS:

header{
    padding-top: 100px;
    padding-bottom: 30px;
    margin-top: 0px;
    min-height: 400px;
    text-align: center;
    height: calc(100% - 257px);
    justify-content: center;
    overflow: hidden;
}

#videoBackground {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -10;
}

#videoBackgroundVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
               transform: translate(-50%, -50%);
}

2 个答案:

答案 0 :(得分:1)

尝试添加

header {
    position:relative;
}

绝对定位的元素将相对于最近的具有position:relative;的父元素进行定位。

如果不存在,它将相对于我认为的身体标签定位自己,这也是为什么overflow:hidden可能没有效果的原因。

答案 1 :(得分:0)

这很好。从input元素中删除<form action="<?php echo esc_url( home_url( '/' ) ); ?>" class="search-form searchform clearfix" method="get"> <div class="search-wrap"> <label id="searchLabel" for="search"> <input id="search" aria-labelledby="searchLabel" type="text" placeholder="<?php esc_attr_e( 'Szukaj', 'colormag' ); ?>" class="s field" name="s"> <button class="search-icon" type="submit"> Klik</button> </div> </form><!-- .searchform -->

min-height: 100%;
#videoBackgroundVideo

https://jsfiddle.net/Sampath_Madhuranga/xk8henbo/1/