我想要的是在懸停時從上到下更改按鈕的背景顏色。在這個頁面上有一個很好的例子http://tympanus.net/Development/CreativeButtons/ 這是我現在的代碼。由於按鈕動畫懸停以改變顏色從上到下
CSS
#button {
outline: 0;
margin: 20px 10px 10px 6px;
border-width:2.7px;
font-size: 25px;
border-style: solid;
font-family: 'PT Sans Narrow', sans-serif;
padding: 4px 40px;
background-color: white;
border-color: #0e83cd;
color: #0e83cd;
transition: all .3s ease-in;
}
#button:hover {
color: white;
background-color: #0e83cd;
transition: all .3s ease-in;
}
HTML
<button id="button" />Ask</button>
哪裏是你的HTML標記?還請創建一個到目前爲止所做的演示,以便我們看看它。 – Guille