Skip to content

Instantly share code, notes, and snippets.

@GradientAnimator
Created October 22, 2023 17:07
Show Gist options
  • Save GradientAnimator/127014c0d3de3398a91c804b90d7d6f8 to your computer and use it in GitHub Desktop.
Save GradientAnimator/127014c0d3de3398a91c804b90d7d6f8 to your computer and use it in GitHub Desktop.
CSS Gradient Animation
.css-selector {
    background: linear-gradient(82deg, #9ac4e4, #7b59ff);
    background-size: 400% 400%;
    -webkit-animation: AnimationName 25s ease infinite;
    -moz-animation: AnimationName 25s ease infinite;
    -o-animation: AnimationName 25s ease infinite;
    animation: AnimationName 25s ease infinite;
}
@-webkit-keyframes AnimationName {
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}
@-o-keyframes AnimationName {
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}
@keyframes AnimationName {
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment