Skip to content

Instantly share code, notes, and snippets.

@jimpala
Forked from anonymous/my.css
Created July 27, 2016 22:00
Show Gist options
  • Save jimpala/eb3fc3bd56bbac363da0b52820cd653b to your computer and use it in GitHub Desktop.
Save jimpala/eb3fc3bd56bbac363da0b52820cd653b to your computer and use it in GitHub Desktop.
CSS Gradient Animation
background: linear-gradient(72deg, #004276, #08082d);
background-size: 400% 400%;
-webkit-animation: AnimationName 16s ease infinite;
-moz-animation: AnimationName 16s ease infinite;
-o-animation: AnimationName 16s ease infinite;
animation: AnimationName 16s ease infinite;
@-webkit-keyframes AnimationName {
    0%{background-position:0% 78%}
    50%{background-position:100% 23%}
    100%{background-position:0% 78%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 78%}
    50%{background-position:100% 23%}
    100%{background-position:0% 78%}
}
@-o-keyframes AnimationName {
    0%{background-position:0% 78%}
    50%{background-position:100% 23%}
    100%{background-position:0% 78%}
}
@keyframes AnimationName {
    0%{background-position:0% 78%}
    50%{background-position:100% 23%}
    100%{background-position:0% 78%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment