Skip to content

Instantly share code, notes, and snippets.

@QETHAN
Created June 17, 2014 01:19
Show Gist options
  • Save QETHAN/9a09d243dd8432eb2dd1 to your computer and use it in GitHub Desktop.
Save QETHAN/9a09d243dd8432eb2dd1 to your computer and use it in GitHub Desktop.
X轴翻转动画
.mod_pics .pic_list .pic:hover .shadow{
-webkit-animation:flipInX .6s .1s ease both;
-moz-animation:flipInX .8s .1s ease both;}
@-webkit-keyframes flipInX{
0%{-webkit-transform:perspective(400px) rotateX(90deg);
opacity:0}
40%{-webkit-transform:perspective(400px) rotateX(-10deg)}
70%{-webkit-transform:perspective(400px) rotateX(10deg)}
100%{-webkit-transform:perspective(400px) rotateX(0deg);
opacity:1}
}
@-moz-keyframes flipInX{
0%{-moz-transform:perspective(400px) rotateX(90deg);
opacity:0}
40%{-moz-transform:perspective(400px) rotateX(-10deg)}
70%{-moz-transform:perspective(400px) rotateX(10deg)}
100%{-moz-transform:perspective(400px) rotateX(0deg);
opacity:1}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment