我在導航欄上使用CSS緩存懸停進行鼠標懸停。 但是,當鼠標光標懸停時,過渡只會緩解,並且在光標離開超鏈接區域後立即對齊,但不會順利地緩解。CSS緩入輸出轉換無法正常工作
這是我用過的CSS:
nav {
position: fixed;
z-index: 1000;
top: 0;
bottom: 0;
width: 200px;
background-color: #036;
}
nav ul {
list-style: none;
margin-top: 15px;
}
nav ul li a {
text-decoration: none;
display: block;
text-align: center;
color: #fff;
padding: 10px 0;
}
.nav-logo {
margin-left: 20px;
background-color: #cacaca;
}
.nav-logo:hover {
transform: scale(1.1);
transition: all 1s ease-in-out;
}
nav ul li a:hover {
background-color: gold;
color: black;
border-radius: 10px;
transform: scale(1.1);
transition: .3s ease-in-out;
-moz-transition: all 1s ease-in-out;
-ms-transform: scale(1.1);
-webkit-transform: scale(1.1);
}
什麼意義了,非常感謝您的幫助! –
非常歡迎! – AdamMcquiff