Skip to content

Instantly share code, notes, and snippets.

@lisacatalano
Last active August 29, 2015 14:00
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 lisacatalano/11101935 to your computer and use it in GitHub Desktop.
Save lisacatalano/11101935 to your computer and use it in GitHub Desktop.
changeColor animation
/* change colors */
@-webkit-keyframes change {
0% { background-color: #eef529; }
16.67% { background-color: #cc5e00; }
33.33% { background-color: #b40808; }
50% { background-color: #8312c9; }
66.67% { background-color: #1e3cba; }
83.33% { background-color: #1ba340; }
100% { background-color: #eef529; }
}
@keyframes change {
0% { background-color: #eef529; }
16.67% { background-color: #cc5e00; }
33.33% { background-color: #b40808; }
50% { background-color: #8312c9; }
66.67% { background-color: #1e3cba; }
83.33% { background-color: #1ba340; }
100% { background-color: #eef529; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment