Skip to content

Instantly share code, notes, and snippets.

Created July 27, 2016 21:58
Show Gist options
  • Save anonymous/e01ec33d66db2a3d8a4b7dea7680dfed to your computer and use it in GitHub Desktop.
Save anonymous/e01ec33d66db2a3d8a4b7dea7680dfed 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%}
}
@jimpala
Copy link

jimpala commented Jul 27, 2016

Biosynthage nav gradient.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment