Forked from GradientAnimator/AnimationName-1588144472832-293.css
Last active
April 29, 2020 07:16
-
-
Save andrekovac/d11c728e673270dc42cf22b79a9c8e23 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
/* Moving gradient created with https://www.gradient-animator.com/ */ | |
background: linear-gradient(322deg, #f419e7, #9ba90c, #e32a1b); | |
background-size: 600% 600%; | |
-webkit-animation: AnimationName 24s ease infinite; | |
-moz-animation: AnimationName 24s ease infinite; | |
-o-animation: AnimationName 24s ease infinite; | |
animation: AnimationName 24s ease infinite; | |
@-webkit-keyframes AnimationName { | |
0%{background-position:31% 0%} | |
50%{background-position:70% 100%} | |
100%{background-position:31% 0%} | |
} | |
@-moz-keyframes AnimationName { | |
0%{background-position:31% 0%} | |
50%{background-position:70% 100%} | |
100%{background-position:31% 0%} | |
} | |
@-o-keyframes AnimationName { | |
0%{background-position:31% 0%} | |
50%{background-position:70% 100%} | |
100%{background-position:31% 0%} | |
} | |
@keyframes AnimationName { | |
0%{background-position:31% 0%} | |
50%{background-position:70% 100%} | |
100%{background-position:31% 0%} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment