最佳答案
这将在您悬停缩略图时显示图标,当您将图标悬停在其上时,它将变为悬停图标.
.image-thumb,.image-thumb img {
position:relative;
width:60px;
height:50px;
}
.image-fav {
display:none;
position:absolute;
bottom:0;
left:0;
width:15px;
height:15px;
background-image:url(normal_plus.png);
}
.image-thumb:hover .image-fav {
display:block;
}
.image-fav:hover {
background-image:url(hover_plus.png);
}
Booya!
原文链接:https://www.f2er.com/html/426647.html