Created
October 28, 2014 13:53
-
-
Save pixelhijack/890d7413455819117463 to your computer and use it in GitHub Desktop.
CSS3 basic animation syntax
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
@-webkit-keyframes popIn { | |
0% { opacity: 0; transform: scale(.3);} | |
100% { opacity: 1; transform: scale(1);} | |
} | |
@keyframes popIn { | |
0% { opacity: 0; transform: scale(.3);} | |
100% { opacity: 1; transform: scale(1);} | |
} | |
.animated { | |
-webkit-animation: popIn .33s normal forwards ease-in; | |
-moz-animation: popIn .33s normal forwards ease-in; | |
animation: popIn .33s normal forwards ease-in; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment