我用下面的代碼箱陰影到左
.header .menu-item {
margin: 0 15px;
list-style: none;
font: 500 16px Poppins, sans-serif;
text-transform: lowercase;
display: inline;
}
.header .menu-item a,
.header .menu-item a:visited {
display: inline-block;
width: auto;
padding: 0 10px;
line-height: 110%;
color: #000;
text-decoration: none;
-webkit-box-shadow: inset 0px 0px 0px 0px rgba(0,0,0,1);
-moz-box-shadow: inset 0px 0px 0px 0px rgba(0,0,0,1);
box-shadow: inset 0px 0px 0px 0px rgba(0,0,0,1);
-webkit-transition: box-shadow ease-in-out 0.2s;
-moz-transition: box-shadow ease-in-out 0.2s;
transition: box-shadow ease-in-out 0.2s;
}
.header .menu-item a:hover,
.header .menu-item a:focus{
color: #000;
text-decoration: none;
-webkit-box-shadow: inset 0px -7px 0px 0px rgba(0,0,0,1);
-moz-box-shadow: inset 0px -7px 0px 0px rgba(0,0,0,1);
box-shadow: inset 0px -7px 0px 0px rgba(0,0,0,1);
}
<div class="header">
<ul class="menu">
<li class="menu-item"><a href="#">Home</a></li>
<li class="menu-item"><a href="#">Contato</a></li>
</ul>
</div>
到目前爲止,這正是我多麼希望。除了因爲我想從右到左出現懸停效果。我怎麼能用箱子陰影來做到這一點?
按照佈局有一個想法。
我打破我的頭,但沒有得到任何東西
如果你有這另一種解決方案,只要他們不使用的圖像,我會感激不盡。
非常感謝
他要求從右到左,而不是從左到右。 –
編輯:)對不起,我沒有閱讀,因爲我在我的工作:) –
正是這樣。謝謝! :) –