CSS效果延迟显示
这里使用css3的一个属性transition,使用方法如下:
transition:属性 时间 动作;
.topusr .img a img{
width: 30px;
height: 30px;
margin-top: 2px;
opacity: 0.4;
transition: opacity .5s ease-in-out;
}
.topusr li:hover .img a img{
opacity:1;
}