Skip to content

Instantly share code, notes, and snippets.

@maxkarkowski
Created January 2, 2015 07:56
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 maxkarkowski/0154d0224288886e48d1 to your computer and use it in GitHub Desktop.
Save maxkarkowski/0154d0224288886e48d1 to your computer and use it in GitHub Desktop.
backgriund animation
background: linear-gradient(214deg, #18d5a4, #d55418, #6c55ec, #ece955, #ec55e0);
background-size: 1000% 1000%;
-webkit-animation: AnimationName 60s ease infinite;
-moz-animation: AnimationName 60s ease infinite;
-o-animation: AnimationName 60s ease infinite;
animation: AnimationName 60s ease infinite;
@-webkit-keyframes AnimationName {
0%{background-position:52% 0%}
50%{background-position:49% 100%}
100%{background-position:52% 0%}
}
@-moz-keyframes AnimationName {
0%{background-position:52% 0%}
50%{background-position:49% 100%}
100%{background-position:52% 0%}
}
@-o-keyframes AnimationName {
0%{background-position:52% 0%}
50%{background-position:49% 100%}
100%{background-position:52% 0%}
}
@keyframes AnimationName {
0%{background-position:52% 0%}
50%{background-position:49% 100%}
100%{background-position:52% 0%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment