2017-04-22 58 views
0

這裏是我的代碼的codepen,因爲堆棧溢出還不允許SCSS:https://codepen.io/thedonquixotic/pen/dWXOby英雄Z指數問題?也許溢出相關?

我想做一個部分,其中包含英雄形象和h1。

包含部分有背景漸變。它的z-index設置爲1.

包含部分包含一個img和一個h1。 img z-index被設置爲-1,並且在漸變背景後面已經正確渲染。

h1的z-index爲2,並且應該在圖像和漸變之上呈現。

我有這個工作,但後來我添加了一個JS視差腳本。我得到了它的工作。 h1等仍然可見,但行爲有點怪異,所以我評論了JS導入,重點是確保我的flex box的東西設置正確。但現在它根本不工作!

body div section.hero { 
 
    display: flex !important; 
 
    width: 100vw; 
 
    height: 81vh; 
 
    background-repeat: no-repeat; 
 
    background-position: center; 
 
    background: linear-gradient(to left, rgba(255, 195, 113, 0.5), rgba(255, 95, 109, 0.5)); 
 
    position: relative; 
 
    z-index: 1; 
 
} 
 
body div section.hero div img { 
 
    display: flex !important; 
 
    width: 100vw; 
 
    height: 81vh; 
 
    z-index: -1 !important; 
 
    flex: 1 1 auto; 
 
} 
 
body div section.hero div.svg-flex { 
 
    position: relative; 
 
    display: flex !important; 
 
    padding: 30px; 
 
    flex-direction: column; 
 
    justify-content: center; 
 
    align-content: center; 
 
    align-items: center; 
 
    z-index: 2; 
 
} 
 
body div section.hero div.svg-flex .hero-text { 
 
    width: 95vw; 
 
    top: 30vh; 
 
    stroke-miterlimit: 10; 
 
    display: flex; 
 
    position: relative; 
 
    overflow: hidden; 
 
    stroke-linejoin: miter; 
 
    font-size: 6rem; 
 
    fill: none; 
 
    stroke: white; 
 
    stroke-width: 2.2px; 
 
} 
 
body div section.hero div.svg-flex h1 { 
 
    position: relative; 
 
    font-family: 'Aller', Arial; 
 
    color: white; 
 
    text-align: center; 
 
    font-size: 3rem; 
 
    line-height: 3rem; 
 
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.35); 
 
    max-width: 70rem; 
 
    margin: 2vh auto 0; 
 
    display: flex !important; 
 
    flex-direction: column; 
 
    justify-content: center; 
 
    align-content: center; 
 
    align-items: center; 
 
    z-index: 2; 
 
}
<section class="hero scene" id="scene" style="display: flex;"> 
 
    <div class="layer" style="display: flex;" data-depth="0.40"><img src="https://s-media-cache-ak0.pinimg.com/originals/32/93/21/329321959fcaf0d24e2349ccf8c9407a.jpg"> 
 
    </div> 
 

 

 

 
<div class="svg-flex layer" data-depth="0.80" style="display: flex;"> 
 
     <h1 class="class-study-title" style="display: flex;"><h1> The Title</h1> 
 
</div> 
 

 
</section>

回答

1

添加這些stlyes到H1

h1 { 
     position: absolute; 
     top: 0px; 
+0

爲什麼它需要是絕對可以觀看這樣呢? –

+0

我已經在代碼筆中進行了這些更改,但似乎並未解決問題。 –

+0

@ DavidA.French - 我的錯誤,將樣式應用於h1而不是'div.svg-flex'。 –