Skip to content

Instantly share code, notes, and snippets.

@GradientAnimator
Created February 26, 2021 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GradientAnimator/a4fc3bc5a005c19c70270f0a5b478223 to your computer and use it in GitHub Desktop.
Save GradientAnimator/a4fc3bc5a005c19c70270f0a5b478223 to your computer and use it in GitHub Desktop.
CSS Gradient Animation
.css-selector {
    background: linear-gradient(246deg, #db1568, #6daaf2, #32deac);
    background-size: 600% 600%;
    -webkit-animation: Animationcolor 30s ease infinite;
    -moz-animation: Animationcolor 30s ease infinite;
    -o-animation: Animationcolor 30s ease infinite;
    animation: Animationcolor 30s ease infinite;
}
@-webkit-keyframes Animationcolor {
    0%{background-position:0% 91%}
    50%{background-position:100% 10%}
    100%{background-position:0% 91%}
}
@-moz-keyframes Animationcolor {
    0%{background-position:0% 91%}
    50%{background-position:100% 10%}
    100%{background-position:0% 91%}
}
@-o-keyframes Animationcolor {
    0%{background-position:0% 91%}
    50%{background-position:100% 10%}
    100%{background-position:0% 91%}
}
@keyframes Animationcolor {
    0%{background-position:0% 91%}
    50%{background-position:100% 10%}
    100%{background-position:0% 91%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment