Skip to content

Instantly share code, notes, and snippets.

Created July 23, 2017 18:00
Show Gist options
  • Save anonymous/7ca948d0169bf8e4a613511a44ddfee5 to your computer and use it in GitHub Desktop.
Save anonymous/7ca948d0169bf8e4a613511a44ddfee5 to your computer and use it in GitHub Desktop.
CSS Gradient Animation
background: linear-gradient(270deg, #29e4b4, #e429dd);
background-size: 400% 400%;
-webkit-animation: bg-anim 30s ease infinite;
-moz-animation: bg-anim 30s ease infinite;
-o-animation: bg-anim 30s ease infinite;
animation: bg-anim 30s ease infinite;
@-webkit-keyframes bg-anim {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes bg-anim {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-o-keyframes bg-anim {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes bg-anim {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment