1
CSS延遲背景 - 圖像
.navbar-brand {
display: block;
margin: 0; padding: 0;
height: 80px;
width: 70px;
background: url('img/logo_orig.png') no-repeat center center;
background-size: 100% auto;
}
.navbar-brand:hover {
background: url('img/logo_hov.png') no-repeat center center;
background-size: 100% auto;
}
這產生與背景圖像的按鈕,當它盤旋hnages背景的懸停。
我想添加一個延遲到背景圖像時懸停。類似於使用
transition: background-color 0.35s ease;
'背景image'不是動畫屬性(尚未)。您可能需要重新考慮這裏。 –