Last active
November 7, 2017 01:24
-
-
Save joshkennedy/c90f9ff62cbc1417ddc2fde52f6cc405 to your computer and use it in GitHub Desktop.
Gradient Background 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
.element { | |
background: linear-gradient(140deg, #37bad3, #f51397, #fcee21); | |
background-size: 600% 600%; | |
animation: BackgroundGradientAnimation 15s ease infinite; | |
} | |
@keyframes BackgroundGradientAnimation { | |
0%{background-position:0% 2%} | |
50%{background-position:100% 99%} | |
100%{background-position:0% 2%} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment