我想要做的和我正在使用的(一些)代碼是在回答另一個問題,特別是「從中心擴展」回答here 。描述效果根本沒有發生。有任何想法嗎?展開懸停時無法使用底部邊框?
HTML
<ul id="items">
<li> <span id="menuBtnOff" onclick="menuIn()">╳</span></li>
<li> <a href="#about" rel=""> About Me </a> </li>
<li> <a href="#profile" rel=""> What I can do for you </a> </li>
<li> <a href="#footer" rel=""> Contact </a> </li>
</ul>
薩斯
li:hover
a
cursor: pointer
color: $menuGreen
transition: all 0.1s ease-in-out
li, #menuBtnOn
transition: all 0.1s ease
text-indent: initial
resize: none
float: right
display: inline-block
padding: 15px
line-height: 5px
font-family: 'Roboto', sans-serif
font-weight: lighter
font-size: 14px
color: black
&:not(:first-child)
border-right: 1px solid rgba(37, 37, 37, 0.28)
a:after
content: ''
border-bottom: solid 3px $menuGreen
transform: scaleX(0)
transition: transform 250ms ease-in-out
a:hover:after
transform: scaleX(1)
我的全碼記錄here
我從來沒有寫過任何SCSS,但是你不需要選擇器後的大括號? – sundance
@sundance Sass語法不需要大括號。 SCSS語法的確如此。我認爲OP正在使用前者。 – Harry