Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save GradientAnimator/fa8f8be554484582f634ac806fde5dc1 to your computer and use it in GitHub Desktop.
Save GradientAnimator/fa8f8be554484582f634ac806fde5dc1 to your computer and use it in GitHub Desktop.
CSS Gradient Animation
.css-selector {
    background: linear-gradient(181deg, #a826d7, #2836bf);
    background-size: 400% 400%;
    -webkit-animation: workerlly 15s ease infinite;
    -moz-animation: workerlly 15s ease infinite;
    -o-animation: workerlly 15s ease infinite;
    animation: workerlly 15s ease infinite;
}
@-webkit-keyframes workerlly {
    0%{background-position:48% 0%}
    50%{background-position:53% 100%}
    100%{background-position:48% 0%}
}
@-moz-keyframes workerlly {
    0%{background-position:48% 0%}
    50%{background-position:53% 100%}
    100%{background-position:48% 0%}
}
@-o-keyframes workerlly {
    0%{background-position:48% 0%}
    50%{background-position:53% 100%}
    100%{background-position:48% 0%}
}
@keyframes workerlly {
    0%{background-position:48% 0%}
    50%{background-position:53% 100%}
    100%{background-position:48% 0%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment