Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save GradientAnimator/4b3b17babfce3cb5fe2c65d0842f941b to your computer and use it in GitHub Desktop.
Save GradientAnimator/4b3b17babfce3cb5fe2c65d0842f941b to your computer and use it in GitHub Desktop.
CSS Gradient Animation
.css-selector {
    background: linear-gradient(1deg, #3dc8a4, #ec5249, #5ab5df, #e8ea86, #c19ae1, #ecc292);
    background-size: 1200% 1200%;
    -webkit-animation: AnimationName 11s ease infinite;
    -moz-animation: AnimationName 11s ease infinite;
    -o-animation: AnimationName 11s ease infinite;
    animation: AnimationName 11s ease infinite;
}
@-webkit-keyframes AnimationName {
    0%{background-position:0% 75%}
    50%{background-position:100% 26%}
    100%{background-position:0% 75%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 75%}
    50%{background-position:100% 26%}
    100%{background-position:0% 75%}
}
@-o-keyframes AnimationName {
    0%{background-position:0% 75%}
    50%{background-position:100% 26%}
    100%{background-position:0% 75%}
}
@keyframes AnimationName {
    0%{background-position:0% 75%}
    50%{background-position:100% 26%}
    100%{background-position:0% 75%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment