Created
March 23, 2016 20:54
-
-
Save tnga/159d23e54d309887cdca to your computer and use it in GitHub Desktop.
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(319deg, #f02306, #e9f418); | |
background-size: 400% 400%; | |
-webkit-animation: gradient-animatortest 30s ease infinite; | |
-moz-animation: gradient-animatortest 30s ease infinite; | |
-o-animation: gradient-animatortest 30s ease infinite; | |
animation: gradient-animatortest 30s ease infinite; | |
@-webkit-keyframes gradient-animatortest { | |
0%{background-position:23% 0%} | |
50%{background-position:78% 100%} | |
100%{background-position:23% 0%} | |
} | |
@-moz-keyframes gradient-animatortest { | |
0%{background-position:23% 0%} | |
50%{background-position:78% 100%} | |
100%{background-position:23% 0%} | |
} | |
@-o-keyframes gradient-animatortest { | |
0%{background-position:23% 0%} | |
50%{background-position:78% 100%} | |
100%{background-position:23% 0%} | |
} | |
@keyframes gradient-animatortest { | |
0%{background-position:23% 0%} | |
50%{background-position:78% 100%} | |
100%{background-position:23% 0%} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment