Created
December 31, 2014 18:56
-
-
Save ddrscott/8f1e3e6c4e0c06fd9243 to your computer and use it in GitHub Desktop.
Generated from http://www.gradient-animator.com/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
background: linear-gradient(38deg, #20bc94, #757eba, #804598); | |
background-size: 600% 600%; | |
-webkit-animation: gradient-rotate 29s ease infinite; | |
-moz-animation: gradient-rotate 29s ease infinite; | |
-o-animation: gradient-rotate 29s ease infinite; | |
animation: gradient-rotate 29s ease infinite; | |
@-webkit-keyframes gradient-rotate { | |
0%{background-position:0% 51%} | |
50%{background-position:100% 50%} | |
100%{background-position:0% 51%} | |
} | |
@-moz-keyframes gradient-rotate { | |
0%{background-position:0% 51%} | |
50%{background-position:100% 50%} | |
100%{background-position:0% 51%} | |
} | |
@-o-keyframes gradient-rotate { | |
0%{background-position:0% 51%} | |
50%{background-position:100% 50%} | |
100%{background-position:0% 51%} | |
} | |
@keyframes gradient-rotate { | |
0%{background-position:0% 51%} | |
50%{background-position:100% 50%} | |
100%{background-position:0% 51%} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment