Skip to content

Instantly share code, notes, and snippets.

@zanesensenig
Created April 18, 2016 12:30
Show Gist options
  • Save zanesensenig/80c7305888288ece7a31f75c7db4fff5 to your computer and use it in GitHub Desktop.
Save zanesensenig/80c7305888288ece7a31f75c7db4fff5 to your computer and use it in GitHub Desktop.
artsUP Landing Gradient
background: linear-gradient(90deg, #00aeef, #ed008c);
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% 82%}
50%{background-position:100% 19%}
100%{background-position:0% 82%}
}
@-moz-keyframes AnimationName {
0%{background-position:0% 82%}
50%{background-position:100% 19%}
100%{background-position:0% 82%}
}
@-o-keyframes AnimationName {
0%{background-position:0% 82%}
50%{background-position:100% 19%}
100%{background-position:0% 82%}
}
@keyframes AnimationName {
0%{background-position:0% 82%}
50%{background-position:100% 19%}
100%{background-position:0% 82%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment