Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save afrodesia/a57000e75423326588b949096617b1d8 to your computer and use it in GitHub Desktop.

Select an option

Save afrodesia/a57000e75423326588b949096617b1d8 to your computer and use it in GitHub Desktop.
CSS Gradient Animation
.css-selector {
    background: linear-gradient(270deg, #6887a0, #bbdde6, #23a6d5, #a3b2a4, #e8edbb, #67823a, #ffb600, #cf5326, #ba0c2f, #d27e65, #e6b7bd, #ded9ce);
    background-size: 2400% 2400%;
    -webkit-animation: AnimationName 59s ease infinite;
    -moz-animation: AnimationName 59s ease infinite;
    -o-animation: AnimationName 59s ease infinite;
    animation: AnimationName 59s ease infinite;
}
@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-o-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName {
    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