Created
November 8, 2016 14:46
-
-
Save tianmarin/f252d80003c022011299eab5d23856ad to your computer and use it in GitHub Desktop.
Just a quick test in https://www.gradient-animator.com/
This file contains hidden or 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(44deg, #c8461f, #bdc81f, #36c81f, #1fc8b3, #1f57c8, #a21fc8, #c81f2d); | |
| background-size: 1400% 1400%; | |
| -webkit-animation: AnimationName 36s ease infinite; | |
| -moz-animation: AnimationName 36s ease infinite; | |
| animation: AnimationName 36s ease infinite; | |
| @-webkit-keyframes AnimationName { | |
| 0%{background-position:0% 99%} | |
| 50%{background-position:100% 2%} | |
| 100%{background-position:0% 99%} | |
| } | |
| @-moz-keyframes AnimationName { | |
| 0%{background-position:0% 99%} | |
| 50%{background-position:100% 2%} | |
| 100%{background-position:0% 99%} | |
| } | |
| @keyframes AnimationName { | |
| 0%{background-position:0% 99%} | |
| 50%{background-position:100% 2%} | |
| 100%{background-position:0% 99%} | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment