css hover 属性问题 鼠标放上去 图标网上滚动一下 移开往下滚回来_百度...
发布网友
发布时间:2024-10-23 22:29
我来回答
共1个回答
热心网友
时间:2分钟前
首先定义背景图片
a{
background: url(../images/icon_tool.png) no-repeat;
}
再定义hover时的属性(变换动画,通过改变背景图位置,以及设置动画过渡时间来实现):
a:hover{
transition: 0.4s;
background-position: -60px -60px;
}