Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save GradientAnimator/a25cc6cc2223bf9c246aeb99486dd096 to your computer and use it in GitHub Desktop.
Save GradientAnimator/a25cc6cc2223bf9c246aeb99486dd096 to your computer and use it in GitHub Desktop.
CSS Gradient Animation
.css-selector {
    background: linear-gradient(220deg, #00ffbd, #00a3ff, #9800ff, #ff00c8, #00ff58);
    background-size: 1000% 1000%;
    -webkit-animation: AnimationName 13s ease infinite;
    -moz-animation: AnimationName 13s ease infinite;
    -o-animation: AnimationName 13s ease infinite;
    animation: AnimationName 13s ease infinite;
}
@-webkit-keyframes AnimationName {
    0%{background-position:53% 0%}
    50%{background-position:48% 100%}
    100%{background-position:53% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:53% 0%}
    50%{background-position:48% 100%}
    100%{background-position:53% 0%}
}
@-o-keyframes AnimationName {
    0%{background-position:53% 0%}
    50%{background-position:48% 100%}
    100%{background-position:53% 0%}
}
@keyframes AnimationName {
    0%{background-position:53% 0%}
    50%{background-position:48% 100%}
    100%{background-position:53% 0%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment