<div class="imgwrap">
<img src="http://p.qpic.cn/music_cover/aaxX4Babic4VicBPicJOwr5xtdEPHbjFCkxsPIZm7kk3ZehX0N4OdMCSQ/300?n=1">
<i class="playbtn"></i>
</div>
.imgwrap {
width: 200px;
height: 200px;
overflow: hidden;
position: relative;
}
.imgwrap img {
width: 200px;
height: 200px;
display: block;
transform: scale(1) translateZ(0);
transition: transform .75s;
}
.playbtn {
width: 50px;
height: 50px;
opacity: 0;
transition: opacity .75s;
position: absolute;
top: 50%;
left: 50%;
margin: -25px 0 0 -25px;
background: url(../assets/img/bofang.png) center center no-repeat;
background-size: 50px auto;
border-radius: 50%
}
.imgwrap:hover .playbtn {
opacity: 1;
transition: opacity .75s
}
.imgwrap:hover img{
transform: scale(1.2);
transition: transform .75s
}
网友评论