【发布时间】:2015-09-30 02:50:05
【问题描述】:
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;
}
这会创建一个带有背景图像的按钮,当它悬停时会显示背景。
我想在悬停时为背景图像添加延迟。类似于使用
transition: background-color 0.35s ease;
【问题讨论】:
-
background-image还不是动画属性。您可能需要在这里重新考虑。