Skip to content

Instantly share code, notes, and snippets.

@marcusshepp
Created May 6, 2016 17:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcusshepp/93fd492810dbcf09c1419cdae4f35b75 to your computer and use it in GitHub Desktop.
Save marcusshepp/93fd492810dbcf09c1419cdae4f35b75 to your computer and use it in GitHub Desktop.
css animations
.foo{
animation: foo_ani 1s;
}
@keyframes foo_ani{
0%{
background-color: #53E889;
}
100%{
background-color: #AAF9C6;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment