因此,我創建了一個div
作爲其父母與span
元素裏面,保留家長的標題,我已經定義css
之前父母的僞元素(:before
),所以當用戶盤旋在元素上,它有一個很好的轉換 但問題是::before
涵蓋了span
元素,所以標題被隱藏,這當然是不可接受的!之前僞元素覆蓋內部的內容
這裏的一對的jsfiddle示例代碼:http://jsfiddle.net/msU6p/4/
這裏的HTML:
<div class="menuItem_Large" id="node_1_menu">
<span>menu item 1</span>
</div>
和風格:
.menuItem_Large
{
position: absolute;
left: 0px;
display: inline-block;
padding-left: 6px;
padding-right: 6px;
height: 20px;
line-height: 16px;
vertical-align: middle;
background-image : url('http://i58.tinypic.com/21eyrk8.png');
background-repeat: repeat;
cursor:pointer;
}
.menuItem_Large:before
{
content:"";
position:absolute;
top:0px;
left:0px;
width:0%;
height:20px;
background-color:rgba(0,200,255,1);
transition:width 0.3s ease-out;
}
.menuItem_Large:hover:before
{
width:100%;
}
.menuItem_Large span
{
color: white;
font-size: 16px;
}
- 請注意:
我嘗試使用上跨度z-index
將其設置爲2左右,但它不工作,當我設置before
元素z-index
負它去下父母的background-image
這是不好的
有誰知道哪裏是我的錯誤或我可以做些什麼來使這項工作只使用css
?
由於提前
嘗試不透明[FIDDLE](http://jsfiddle.net/GopsAB/msU6p/5/)。你想要這個 –
@Harry我希望before元素覆蓋整個父元素,但不是跨度中的文本,我希望文本顯示在最上面 – Mehran
@Mehran:看起來你想要類似於Anon的東西發佈。 – Harry