Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save GradientAnimator/2701963fdf0f46fe6dbb5a9fd2f2d1fc to your computer and use it in GitHub Desktop.
Save GradientAnimator/2701963fdf0f46fe6dbb5a9fd2f2d1fc to your computer and use it in GitHub Desktop.
CSS Gradient Animation
.css-selector {
    background: linear-gradient(222deg, #e1359e, #eeb1d6, #a70262);
    background-size: 600% 600%;
    -webkit-animation: AnimationName 5s ease infinite;
    -moz-animation: AnimationName 5s ease infinite;
    -o-animation: AnimationName 5s ease infinite;
    animation: AnimationName 5s ease infinite;
}
@-webkit-keyframes AnimationName {
    0%{background-position:0% 45%}
    50%{background-position:100% 56%}
    100%{background-position:0% 45%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 45%}
    50%{background-position:100% 56%}
    100%{background-position:0% 45%}
}
@-o-keyframes AnimationName {
    0%{background-position:0% 45%}
    50%{background-position:100% 56%}
    100%{background-position:0% 45%}
}
@keyframes AnimationName {
    0%{background-position:0% 45%}
    50%{background-position:100% 56%}
    100%{background-position:0% 45%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment