Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save GradientAnimator/acca90630b3196749d3b79814c254023 to your computer and use it in GitHub Desktop.
Save GradientAnimator/acca90630b3196749d3b79814c254023 to your computer and use it in GitHub Desktop.
CSS Gradient Animation
.css-selector {
    background: linear-gradient(336deg, #0d7258, #850fb4, #a9b40f);
    background-size: 600% 600%;
    -webkit-animation: AnimationName 6s ease infinite;
    -moz-animation: AnimationName 6s ease infinite;
    -o-animation: AnimationName 6s ease infinite;
    animation: AnimationName 6s ease infinite;
}
@-webkit-keyframes AnimationName {
    0%{background-position:24% 0%}
    50%{background-position:77% 100%}
    100%{background-position:24% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:24% 0%}
    50%{background-position:77% 100%}
    100%{background-position:24% 0%}
}
@-o-keyframes AnimationName {
    0%{background-position:24% 0%}
    50%{background-position:77% 100%}
    100%{background-position:24% 0%}
}
@keyframes AnimationName {
    0%{background-position:24% 0%}
    50%{background-position:77% 100%}
    100%{background-position:24% 0%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment