Skip to content

Instantly share code, notes, and snippets.

Created July 22, 2017 05:01
Show Gist options
  • Save anonymous/cfc338bb629338d9b4e0943d1e48809f to your computer and use it in GitHub Desktop.
Save anonymous/cfc338bb629338d9b4e0943d1e48809f to your computer and use it in GitHub Desktop.
CSS Gradient Animation
background: linear-gradient(222deg, #0288d1, #4dd0e1);
background-size: 400% 400%;
-webkit-animation: GradientAnimation 23s ease infinite;
-moz-animation: GradientAnimation 23s ease infinite;
-o-animation: GradientAnimation 23s ease infinite;
animation: GradientAnimation 23s ease infinite;
@-webkit-keyframes GradientAnimation {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}
@-moz-keyframes GradientAnimation {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}
@-o-keyframes GradientAnimation {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}
@keyframes GradientAnimation {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment