Last active
January 16, 2021 12:47
-
-
Save godfreymakori/d486e6c444809fdf9edf9d5d70801f39 to your computer and use it in GitHub Desktop.
Animated Gradient Background CSS only
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
body { | |
background: linear-gradient(-45deg, #8D298A, #F26C25, #F26C25, #8D298A); | |
background-size: 400% 400%; | |
-webkit-animation: gradient 15s ease infinite; | |
animation: gradient 15s ease infinite; | |
} | |
@-webkit-keyframes gradient { | |
0% { | |
background-position: 0% 50%; | |
} | |
50% { | |
background-position: 100% 50%; | |
} | |
100% { | |
background-position: 0% 50%; | |
} | |
} | |
@keyframes gradient { | |
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