悬停后的移动图像
只有铬!
在 google chrome 浏览器中查看我的页面:http: //qass.im/teeny/
现在悬停所有图像..
为什么悬停后移动图像?
.pin img{
width: 100%;
max-width:100%;
height:auto;
border-radius:3px 3px 0 0;
display:block;
opacity:0.5;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.pin img:hover{
opacity:1;
}
谢谢。