Forked from GradientAnimator/upgradient-1610571764692-572.css
Created
January 13, 2021 21:03
-
-
Save afrodesia/908aad96cc8187658d7157f46ba0b313 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
| .css-selector { | |
| background: linear-gradient(182deg, #6887a0, #bbdde6, #23a6d5, #a3b2a4, #e8edbb, #67823a, #ffb600, #cf5326, #ba0c2f, #d27e65, #e6b7bd, #ded9ce); | |
| background-size: 2400% 2400%; | |
| -webkit-animation: upgradient 59s ease infinite; | |
| -moz-animation: upgradient 59s ease infinite; | |
| -o-animation: upgradient 59s ease infinite; | |
| animation: upgradient 59s ease infinite; | |
| } | |
| @-webkit-keyframes upgradient { | |
| 0%{background-position:51% 0%} | |
| 50%{background-position:50% 100%} | |
| 100%{background-position:51% 0%} | |
| } | |
| @-moz-keyframes upgradient { | |
| 0%{background-position:51% 0%} | |
| 50%{background-position:50% 100%} | |
| 100%{background-position:51% 0%} | |
| } | |
| @-o-keyframes upgradient { | |
| 0%{background-position:51% 0%} | |
| 50%{background-position:50% 100%} | |
| 100%{background-position:51% 0%} | |
| } | |
| @keyframes upgradient { | |
| 0%{background-position:51% 0%} | |
| 50%{background-position:50% 100%} | |
| 100%{background-position:51% 0%} | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment