Skip to content

Instantly share code, notes, and snippets.

Created September 15, 2016 04:05
Show Gist options
  • Save anonymous/73bdf521efe2450b2abe5d910e858196 to your computer and use it in GitHub Desktop.
Save anonymous/73bdf521efe2450b2abe5d910e858196 to your computer and use it in GitHub Desktop.
CSS Gradient Animation
background: linear-gradient(181deg, #3498db, #2c3e50);
background-size: 400% 400%;
-webkit-animation: AnimationName 11s ease infinite;
-moz-animation: AnimationName 11s ease infinite;
-o-animation: AnimationName 11s ease infinite;
animation: AnimationName 11s ease infinite;
@-webkit-keyframes AnimationName {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
@-o-keyframes AnimationName {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
@keyframes AnimationName {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment