Skip to content

Instantly share code, notes, and snippets.

@benjaminfisher
Created December 5, 2012 15:22
Show Gist options
  • Save benjaminfisher/4216485 to your computer and use it in GitHub Desktop.
Save benjaminfisher/4216485 to your computer and use it in GitHub Desktop.
CSS for fadein keyframes
/* 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