Skip to content

Instantly share code, notes, and snippets.

Created December 29, 2014 11:36
Show Gist options
  • Save anonymous/3c8af64f402e167088de to your computer and use it in GitHub Desktop.
Save anonymous/3c8af64f402e167088de to your computer and use it in GitHub Desktop.
CSS Gradient Animation
background: linear-gradient(49deg, #25bf97, #ca11e8, #5f0ea1, #1e9de4, #2b4c8c, #2f3238, #232323, #c63f3f, #f52626);
background-size: 1800% 1800%;
-webkit-animation: AnimationName 29s ease infinite;
-moz-animation: AnimationName 29s ease infinite;
-o-animation: AnimationName 29s ease infinite;
animation: AnimationName 29s ease infinite;
@-webkit-keyframes AnimationName {
    0%{background-position:0% 97%}
    50%{background-position:100% 4%}
    100%{background-position:0% 97%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 97%}
    50%{background-position:100% 4%}
    100%{background-position:0% 97%}
}
@-o-keyframes AnimationName {
    0%{background-position:0% 97%}
    50%{background-position:100% 4%}
    100%{background-position:0% 97%}
}
@keyframes AnimationName {
    0%{background-position:0% 97%}
    50%{background-position:100% 4%}
    100%{background-position:0% 97%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment