Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save GradientAnimator/27fa2b62662681e1f9b727b43759e44e to your computer and use it in GitHub Desktop.
Save GradientAnimator/27fa2b62662681e1f9b727b43759e44e to your computer and use it in GitHub Desktop.
CSS Gradient Animation
.css-selector {
    background: linear-gradient(273deg, #3d2f09, #7d5726, #e7c460, #000000);
    background-size: 800% 800%;
    -webkit-animation: AnimationName 59s ease infinite;
    -moz-animation: AnimationName 59s ease infinite;
    -o-animation: AnimationName 59s ease infinite;
    animation: AnimationName 59s ease infinite;
}
@-webkit-keyframes AnimationName {
    0%{background-position:0% 46%}
    50%{background-position:100% 55%}
    100%{background-position:0% 46%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 46%}
    50%{background-position:100% 55%}
    100%{background-position:0% 46%}
}
@-o-keyframes AnimationName {
    0%{background-position:0% 46%}
    50%{background-position:100% 55%}
    100%{background-position:0% 46%}
}
@keyframes AnimationName {
    0%{background-position:0% 46%}
    50%{background-position:100% 55%}
    100%{background-position:0% 46%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment