2
我在按鈕上製作過渡效果時遇到了一些麻煩。Css按鈕框陰影轉換
使用 「的box-shadow」 我能夠創造這樣的:
.load {
\t color:black;
\t border:none;
\t background-color: #ffffff;
\t width: 100px;
\t height: 30px;
\t margin-left: 21px;
\t box-shadow: inset 0 0 0 0 #000000;
\t transition-duration: 0.3s;
\t transition-timing-function: ease-in;
}
.load:hover {
\t transition-duration: 0.3s;
\t box-shadow: inset 0 -3px 0 0 #000000;
}
\t <button class="load"> Home
\t </button>
陰影來自底部的3px到按鈕。我希望它能夠從左到右,但仍然保持在3px的高度。
我也很確定這個網站有它的工作,但我無法從檢查中提取所需的CSS。
謝謝!
是否強制必須與'箱shadow'?我不認爲你可以用陰影來做,但有其他方法可以做到。 – Harry
http://stackoverflow.com/questions/35641827/animated-css-underline-on-delay/35643574#35643574可能的重複 – Harry