Skip to content

Instantly share code, notes, and snippets.

@joshkennedy
Last active November 7, 2017 01:24
Show Gist options
  • Save joshkennedy/c90f9ff62cbc1417ddc2fde52f6cc405 to your computer and use it in GitHub Desktop.
Save joshkennedy/c90f9ff62cbc1417ddc2fde52f6cc405 to your computer and use it in GitHub Desktop.
Gradient Background Animation
.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