Skip to content

Instantly share code, notes, and snippets.

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/ce683c4b857a24ce8e7978a4263d73fb to your computer and use it in GitHub Desktop.
Save GradientAnimator/ce683c4b857a24ce8e7978a4263d73fb to your computer and use it in GitHub Desktop.
CSS Gradient Animation
.css-selector {
фон: линейный градиент (162градус, #b2f016, #ffab00); background-size: 400% 400%;
-webkit-animation: AnimationName 29s ease бесконечно;
-moz-animation: AnimationName (ИмяАнимации) 29 сек. ease бесконечен;
-o-animation: AnimationName 29s ease бесконечно;
animation: AnimationName (ИмяАнимации) 29 сек. ease бесконечен;
}
@-webkit-keyframes AnimationName {
    0%{background-position:0% 91%}
    50%{background-position:100% 10%}
    100%{background-position:0% 91%}
}
@-moz-keyframes AnimationName (ИмяАнимации) {
    0%{background-position:0% 91%}
    50%{background-position:100% 10%}
    100%{background-position:0% 91%}
}
@-o-keyframes AnimationName {
    0%{background-position:0% 91%}
    50%{background-position:100% 10%}
    100%{background-position:0% 91%}
}
@keyframes AnimationName (ИмяАнимации) {
    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