Created
December 5, 2012 15:22
-
-
Save benjaminfisher/4216485 to your computer and use it in GitHub Desktop.
CSS for fadein keyframes
This file contains 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
/* name, duration, timing function, delay, fill mode */ | |
-webkit-animation: fadeIn 700ms ease-in-out 1s both; | |
animation: fadeIn 700ms ease-in-out 1s both; | |
@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}} | |
@keyframes fadeIn{from{opacity:0}to{opacity:1}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment