Skip to content

Instantly share code, notes, and snippets.

Created February 19, 2015 10:09
Show Gist options
  • Save anonymous/b10633ee16103bf50649 to your computer and use it in GitHub Desktop.
Save anonymous/b10633ee16103bf50649 to your computer and use it in GitHub Desktop.
CSS Gradient Animation
background: linear-gradient(0deg, #602e72, #ac72c1, #f5eef7);
background-size: 600% 600%;
-webkit-animation: AnimationName 30s ease infinite;
-moz-animation: AnimationName 30s ease infinite;
-o-animation: AnimationName 30s ease infinite;
animation: AnimationName 30s ease infinite;
@-webkit-keyframes AnimationName {
    0%{background-position:49% 0%}
    50%{background-position:52% 100%}
    100%{background-position:49% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:49% 0%}
    50%{background-position:52% 100%}
    100%{background-position:49% 0%}
}
@-o-keyframes AnimationName {
    0%{background-position:49% 0%}
    50%{background-position:52% 100%}
    100%{background-position:49% 0%}
}
@keyframes AnimationName {
    0%{background-position:49% 0%}
    50%{background-position:52% 100%}
    100%{background-position:49% 0%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment