Skip to content

Instantly share code, notes, and snippets.

@kenigbolo
Created July 24, 2016 15:08
Show Gist options
  • Save kenigbolo/f35c85f474c590d1c0bfbf57098c6456 to your computer and use it in GitHub Desktop.
Save kenigbolo/f35c85f474c590d1c0bfbf57098c6456 to your computer and use it in GitHub Desktop.
background: linear-gradient(335deg, #59f7ce, #2fc9ec, #2fd1ec, #2fb8ec);
background-size: 800% 800%;
-webkit-animation: AnimationName 0s ease infinite;
-moz-animation: AnimationName 0s ease infinite;
-o-animation: AnimationName 0s ease infinite;
animation: AnimationName 0s ease infinite;
@-webkit-keyframes AnimationName {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
@-o-keyframes AnimationName {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
@keyframes AnimationName {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment