Created
June 22, 2024 22:29
-
-
Save GradientAnimator/cd69278fdff63a0a45d716567f08faec to your computer and use it in GitHub Desktop.
CSS Gradient Animation
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
.css-selector { | |
background: linear-gradient(45deg, #eae894, #c6ff9e, #9eb3ff); | |
background-size: 600% 600%; | |
-webkit-animation: AnimationName 27s ease infinite; | |
-moz-animation: AnimationName 27s ease infinite; | |
-o-animation: AnimationName 27s ease infinite; | |
animation: AnimationName 27s ease infinite; | |
} | |
@-webkit-keyframes AnimationName { | |
0%{background-position:97% 0%} | |
50%{background-position:4% 100%} | |
100%{background-position:97% 0%} | |
} | |
@-moz-keyframes AnimationName { | |
0%{background-position:97% 0%} | |
50%{background-position:4% 100%} | |
100%{background-position:97% 0%} | |
} | |
@-o-keyframes AnimationName { | |
0%{background-position:97% 0%} | |
50%{background-position:4% 100%} | |
100%{background-position:97% 0%} | |
} | |
@keyframes AnimationName { | |
0%{background-position:97% 0%} | |
50%{background-position:4% 100%} | |
100%{background-position:97% 0%} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment