Skip to content

Instantly share code, notes, and snippets.

@devloprs
Forked from anonymous/my.css
Created February 27, 2017 05:11
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 devloprs/8052e7387b7b3c486a9211f955f2fbf9 to your computer and use it in GitHub Desktop.
Save devloprs/8052e7387b7b3c486a9211f955f2fbf9 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