我有一个显示返回顶部箭头图像(精灵)的 div。我正在使用 css 更改背景位置以实现颜色更改。
如何在不使用背景位置转换的情况下转换箭头的颜色?我正在寻找背景色过渡效果,但我不能使用它,因为我希望 div 的背景是透明的。希望我的问题不会太混乱。
CSS:
.top{
background:url(../images/top.png) -10px -10px;
background-repeat:no-repeat;
width:20px;
height:20px;
display:block;
margin:0 auto;
cursor:pointer;
}
.top:hover{
background:url(../images/top.png) -10px 30px;
}