-
-
Save erickeno/f396a5fca729649398267b6068364847 to your computer and use it in GitHub Desktop.
CSS Gradient Animation
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(232deg, #4bcf93, #4b79cf, #a24bcf); | |
| background-size: 600% 600%; | |
| -webkit-animation: AnimationName 32s ease infinite; | |
| -moz-animation: AnimationName 32s ease infinite; | |
| -o-animation: AnimationName 32s ease infinite; | |
| animation: AnimationName 32s ease infinite; | |
| @-webkit-keyframes AnimationName { | |
| 0%{background-position:0% 50%} | |
| 50%{background-position:100% 50%} | |
| 100%{background-position:0% 50%} | |
| } | |
| @-moz-keyframes AnimationName { | |
| 0%{background-position:0% 50%} | |
| 50%{background-position:100% 50%} | |
| 100%{background-position:0% 50%} | |
| } | |
| @-o-keyframes AnimationName { | |
| 0%{background-position:0% 50%} | |
| 50%{background-position:100% 50%} | |
| 100%{background-position:0% 50%} | |
| } | |
| @keyframes AnimationName { | |
| 0%{background-position:0% 50%} | |
| 50%{background-position:100% 50%} | |
| 100%{background-position:0% 50%} | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment