![蒙娜丽莎](http://a1.att.hudong.com/75/68/05300000467416128543684500954.jpg)
/*HTML*/
div.box
img[src="..."]
div.over-layer
h3
p
/*CSS*/
.box{
position:relative;
perspective: 1000px;
text-align:center;
}
.box img{
width:200px;
height:auto;
opacity:1;
transform:translateY(0) rotateX(0);
transition: all 1s ease-in-out 0s;
}
.box:hover img{
transform: translateY(-100%) rotateX(90deg);
transform-origin: center bottom 0;
opacity:0;
}
.box .over-layer{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
transform: translateY(100%) rotateX(-90deg);
opacity:0;
transform-origin:top center;
transition: all 1s ease-in-out;
}
.box:hover .over-layer{
transform: translateY(0) rotateX(0);
opacity:1;
}
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
Comment
Algolia