0
我想創建一個雙箱陰影效果,就像一個頁面上的兩個聚光燈。創建雙箱陰影效果(如兩個聚光燈)
代碼和小提琴:
<style>
.greenbox1{
position: relative;
height: 100px;
width: 100px;
margin-left: 100px;
text-align:center;
background-color:#00aa00;
float:left;
}
.greenbox2{
position: relative;
height: 100px;
width: 100px;
text-align:center;
margin-right: 100px;
background-color:#00aa00;
float:right;
}
.spotlightme{
box-shadow: 0 0 0 1000px rgba(0, 0, 0,.4);
position: relative;
z-index: 99;
border-radius:10px;
padding: 10px;
}
</style>
<div class="greenbox greenbox1">
<span class="spotlightme">spotlight</span>
</div>
<div class="greenbox greenbox2">
<span class="spotlightme">spotlight</span>
</div>
在此的jsfiddle,都是太陰暗:https://jsfiddle.net/7htp62h1/6/
而在這其中,只有一個具有正確的聚光燈: https://jsfiddle.net/7htp62h1/8/
我會就像在那裏,在頁面的其餘部分上都會有「聚光燈」和類似的陰影。
作爲獎勵,我很想知道如何讓這些聚光燈效果「淡入」。
謝謝!
你好,謝謝你的回覆。我希望能讓整個頁面變得更暗,只有兩個聚光燈。在這個版本中,「聚光燈」這個單詞周圍的區域變暗,但不是整個頁面。 – garson