Created
June 17, 2014 01:19
-
-
Save QETHAN/9a09d243dd8432eb2dd1 to your computer and use it in GitHub Desktop.
X轴翻转动画
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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