2014-03-25 150 views
2

我無法獲得帶有陰影的陰影元素(還有陰影)。 有什麼幫助嗎?css z-index被遮蔽的陰影框中的陰影元素

http://jsfiddle.net/4T9Ac/

我覺得麻煩的是與z-index和位置,但我不能完全把它在一起。

圓形陰影必須在藍色的div後面,以便只有底部顯示在藍色框的底部。我希望它看起來像這個演示中的「單一水平曲線」:nicolasgallagher.com/css-drop-shadows-without-images/demo

注意:HTML結構一定不能改變,如果可能的話!

HTML:

<section> 
    <div> 
     <span class="btn-jaune"> 
      <a> 
       <span>hola</span> 
      </a> 
     </span> 
    </div> 
</section> 

CSS:

section { 
    border-top: 4px solid #00A1B1; 
} 
section > div { 
    background-color: #E6F8FA; 
    padding: 20px; 
    position: relative; 
    z-index: 1; 
} 
section > div:before { 
    content: ""; 
    position: absolute; 
    z-index: -2; 

    top: 50%; 
    bottom: 0; 
    left: 10px; 
    right: 10px; 
    -moz-border-radius: 100px/10px; 
    border-radius: 100px/10px; 

    -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.6); 
    -moz-box-shadow: 0 0 15px rgba(0,0,0,0.6); 
    box-shadow: 0 0 15px rgba(0,0,0,0.6); 
} 
.btn-jaune { 
    width: 100%; 
    background: #FFEA00; 
    display: block; 
    position: relative; 
} 
.btn-jaune > a { 
    padding: 0; 
    margin: 0; 
    height: 48px; 
    display: block; 
} 
.btn-jaune > a:before, 
.btn-jaune > a:after { 
    content: ""; 
    position: absolute; 
    z-index: -2; 
    bottom: 15px; 
    width: 49%; 
    height: 20%; 
    max-width: 300px; 
    max-height: 100px; 
    -webkit-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7); 
    -moz-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7); 
    box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7); 
} 
.btn-jaune > a:before { 
    left: 4px; 
    -webkit-transform: rotate(-2deg); 
    -moz-transform: rotate(-2deg); 
    -ms-transform: rotate(-2deg); 
    -o-transform: rotate(-2deg); 
    transform: rotate(-2deg); 
} 
.btn-jaune > a:after { 
    right: 4px; 
    -webkit-transform: rotate(2deg); 
    -moz-transform: rotate(2deg); 
    -ms-transform: rotate(2deg); 
    -o-transform: rotate(2deg); 
    transform: rotate(2deg); 
} 
.btn-jaune > a > span { 
    display: block; 
    text-transform: uppercase; 
    text-align: center; 
    font-weight: normal; 
    padding: 17px 30px; 
    margin-right: 20px; 
} 

伊克巴爾我沒有看到與你的答案代碼進行任何更改。有一個jsfiddle鏈接?

我想實現的是:

shadow

回答

-1

我不是100%,你想要什麼樣的最終產品的樣子,但如果你改變section > div:before有一個top: 5%;,它把在另一個盒子中間的黃色框。

+0

圓形陰影必須是藍色的div後面,所以,只有下方顯示的藍色包裝盒的底部。 我希望它看起來像這個演示中的「單一水平曲線」:http://nicolas.gallagher.com/css-drop-shadows-without-images/demo/ –

0

短暫的變化。

section > div { 
    position: relative; 
    /*z-index: 1;*/ 
} 
.btn-jaune { 
    position: relative; 
    z-index: 5; 
} 
.btn-jaune > a { 
    background: #FFEA00; 
} 

很長的變化。

section { 
    position: relative; 
} 
section > div { 
    /*position: relative;*/ 
    /*z-index: 1;*/ 
} 
section > div:before { 
    /*z-index: -2;*/ 
} 

.btn-jaune { 
    position: relative; 
    z-index: 5; 
} 
.btn-jaune > a { 
    background: #FFEA00; 
} 
.btn-jaune > a:before, 
.btn-jaune > a:after { 
    position: absolute; 
    z-index: -1; 
} 

警告:否定z-index在舊版瀏覽器中不起作用。

+0

差不多!但是,這樣做會丟失鏈接元素的影子。 我開始認爲我不太瞭解z-index屬性,而且這根本不可能。 –

1

GOT IT!

:before僞元素進入section,而不是section > div。 此外,正如伊克巴爾所說,section必須處於相對位置。

謝謝!

http://jsfiddle.net/4T9Ac/3/