Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save GradientAnimator/3b7abef2f826e6a01fd5256bb03ae135 to your computer and use it in GitHub Desktop.
Save GradientAnimator/3b7abef2f826e6a01fd5256bb03ae135 to your computer and use it in GitHub Desktop.
CSS Gradient Animation
.css-selector {
    background: linear-gradient(232deg, #0002ff, #ff00fe, #ff0060);
    background-size: 600% 600%;
    -webkit-animation: anim-Blue-Pink-Red-0 16s ease infinite;
    -moz-animation: anim-Blue-Pink-Red-0 16s ease infinite;
    -o-animation: anim-Blue-Pink-Red-0 16s ease infinite;
    animation: anim-Blue-Pink-Red-0 16s ease infinite;
}
@-webkit-keyframes anim-Blue-Pink-Red-0 {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes anim-Blue-Pink-Red-0 {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-o-keyframes anim-Blue-Pink-Red-0 {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes anim-Blue-Pink-Red-0 {
    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