Skip to content

Instantly share code, notes, and snippets.

Created February 27, 2017 05:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/2a7da38d12de572482decc44fe4e4e2f to your computer and use it in GitHub Desktop.
Save anonymous/2a7da38d12de572482decc44fe4e4e2f to your computer and use it in GitHub Desktop.
CSS Gradient Animation
background: linear-gradient(108deg, #3e98d5, #fabc05);
background-size: 400% 400%;
-webkit-animation: ab-fab 52s ease infinite;
-moz-animation: ab-fab 52s ease infinite;
-o-animation: ab-fab 52s ease infinite;
animation: ab-fab 52s ease infinite;
@-webkit-keyframes ab-fab {
    0%{background-position:0% 48%}
    50%{background-position:100% 53%}
    100%{background-position:0% 48%}
}
@-moz-keyframes ab-fab {
    0%{background-position:0% 48%}
    50%{background-position:100% 53%}
    100%{background-position:0% 48%}
}
@-o-keyframes ab-fab {
    0%{background-position:0% 48%}
    50%{background-position:100% 53%}
    100%{background-position:0% 48%}
}
@keyframes ab-fab {
    0%{background-position:0% 48%}
    50%{background-position:100% 53%}
    100%{background-position:0% 48%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment