2016-02-18 40 views
0

我有一個視頻在div背景中播放,但不是在文本後面顯示視頻顯示爲標題/註冊表單上方的單獨部分。背景視頻在div/jumbotron中的位置不正確

活生生的例子:http://185.123.96.102/~kidsdrum/moneynest.co.uk/

我想文本和電子郵件註冊表格顯示在視頻之上。

請注意我使用Bootstrap作爲響應式設計(視頻隱藏在平板電腦/手機上)。

我想要一個視頻在我的jumbotron背景中播放。

當瀏覽器窗口的全寬和高度爲100%(滾動時下面有更多內容)時,這對圖像有效,但現在有問題。

CSS

.jumbotron { 
color: white; 
position:relative; 
overflow:hidden; 
height:500px 
} 


    html,body {height:100%;} 
.special,.special .jumbotron 
{height:100%; 
width: 100%; 
    margin: 0px; 
    padding: 0px; 
border-radius: 0px; 
} 

.fullscreen-bg { 
    position: fixed; 
    top: 0; 
    right: 0; 
    bottom: 0; 
    left: 0; 
    overflow: hidden; 
    z-index: -100; 
} 

.fullscreen-bg__video { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
} 

@media (min-aspect-ratio: 16/9) { 
    .fullscreen-bg__video { 
    height: 300%; 
    top: -100%; 
    } 
} 

@media (max-aspect-ratio: 16/9) { 
    .fullscreen-bg__video { 
    width: 300%; 
    left: -100%; 
    } 
} 

@media (max-width: 767px) { 
    .fullscreen-bg { 
    background: url('../img/videoframe.jpg') center center/cover no-repeat; 
    } 

    .fullscreen-bg__video { 
    display: none; 
    } 
} 

HTML

<div class="jumbotron"> 
<div class="fullscreen-bg"></div> 
<div class="container special"> 
<video loop muted autoplay poster="img/videoframe.jpg" class="fullscreen-bg__video"> 

     <source src="http://185.123.96.102/~kidsdrum/moneynest.co.uk/vid/people-with-no-money-worries.mp4" type="video/mp4"> 

    </video> 
</div></div> 


    <div class="container text-center"> 
    <div class="h1extrapadding hidden-xs hidden-sm"></div> <h1 class="boldme">Aged 20-30 & frustrated with money?</h1> 
    <div class="greenpromobox"> 
    <div class="h2extrapadding hidden-xs hidden-sm"></div> <h2 class="boldme">Take our free <b class="jumpstarttext">Jumpstart Your Finances</b> class to<br /> quickly gain control over your finances</h2> 


      <!-- Begin MailChimp Signup Form --> 
<div id="mc_embed_signup"> 
<form action="//moneynest.us11.list-manage.com/subscribe/post?u=9ccf2d2219536b32eaae3c3d1&amp;id=299de51b4e" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate> 
    <div id="mc_embed_signup_scroll"> 


        <img src="http://185.123.96.102/~kidsdrum/moneynest.co.uk/img/hand-drawn-arrow.png" id="handarrow" class="hidden-xs hidden-sm" alt="arrow"><input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="Enter your email address" required autofocus> 
    <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups--> 
    <div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_9ccf2d2219536b32eaae3c3d1_299de51b4e" tabindex="-1" value=""></div> 
    <div class="clear"><input type="submit" value="Start Class Now" name="subscribe" id="mc-embedded-subscribe" class="text-uppercase btn btn-primary btn-lg"></div> 
    </div> 
</form> 
</div> 

<!--End mc_embed_signup--> 

</div> 
</div> 

</div> 
</div> 
    </div> 

回答

0

添加以下的風格你.jumbotron

margin-bottom: -500px; 
z-index: -1; 

來幫助你完成這個靜態設置。您也可以使用此元素的邊距值來正確佈局它們。

+0

感謝Entio,在開發工具中使用了這個功能,並且運行良好,我如何讓這個Jumbotron /視頻佔用瀏覽器窗口高度的100%?例如。下面的文字和內容「你需要什麼幫助?」僅在滾動時顯示。我意識到這可能是兩個問題。我很抱歉。 –

+0

@SamJefferies新的瀏覽器讓我們使用高度:100vh(100%的視口高度,在這裏閱讀更多:http://caniuse.com/#feat=viewport-units) – entio

+0

這讓我有點困惑,我沒有意識到我使用Viewport單位? –

0

試試這個

.greenpromobox 
    { 
     top: 40px; 
     z-index: 9999999; 
     position: absolute; 
     margin-left: 20%; 
    } 
0

在你的div加個班(文本和電子郵件註冊表格),我已經加入.emailBox例如並且在

.emailBox { 
    left: 50%; 
    margin-left: -585px; 
    position: absolute; 
    top: 0; 
} 

希望這將添加以下的風格解決你的問題。