Skip to content

Instantly share code, notes, and snippets.

@Lorezz
Forked from anonymous/my.css
Last active August 29, 2015 14:12
Show Gist options
  • Save Lorezz/459f941366e86e11bf5e to your computer and use it in GitHub Desktop.
Save Lorezz/459f941366e86e11bf5e to your computer and use it in GitHub Desktop.
Animated Gradient 2
background: linear-gradient(49deg, #25bf97, #ca11e8, #5f0ea1, #1e9de4);
background-size: 800% 800%;
-webkit-animation: lzzAnimatedGradient 60s ease infinite;
-moz-animation: lzzAnimatedGradient 60s ease infinite;
-o-animation: lzzAnimatedGradient 60s ease infinite;
animation: lzzAnimatedGradient 60s ease infinite;
@-webkit-keyframes lzzAnimatedGradient {
    0%{background-position:0% 97%}
    50%{background-position:100% 4%}
    100%{background-position:0% 97%}
}
@-moz-keyframes lzzAnimatedGradient {
    0%{background-position:0% 97%}
    50%{background-position:100% 4%}
    100%{background-position:0% 97%}
}
@-o-keyframes lzzAnimatedGradient {
    0%{background-position:0% 97%}
    50%{background-position:100% 4%}
    100%{background-position:0% 97%}
}
@keyframes lzzAnimatedGradient {
    0%{background-position:0% 97%}
    50%{background-position:100% 4%}
    100%{background-position:0% 97%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment