Skip to content

Instantly share code, notes, and snippets.

@melihkocaturk
Created October 3, 2018 19:40
Show Gist options
  • Save melihkocaturk/f08971cd0472dcc85dff60812866bc2b to your computer and use it in GitHub Desktop.
Save melihkocaturk/f08971cd0472dcc85dff60812866bc2b to your computer and use it in GitHub Desktop.
CSS Gradient Animation
background: linear-gradient(231deg, #1a1a1a, #000000);
background-size: 400% 400%;
-webkit-animation: AnimationName 15s ease infinite;
-moz-animation: AnimationName 15s ease infinite;
animation: AnimationName 15s ease infinite;
@-webkit-keyframes AnimationName {
0%{background-position:0% 51%}
50%{background-position:100% 50%}
100%{background-position:0% 51%}
}
@-moz-keyframes AnimationName {
0%{background-position:0% 51%}
50%{background-position:100% 50%}
100%{background-position:0% 51%}
}
@keyframes AnimationName {
0%{background-position:0% 51%}
50%{background-position:100% 50%}
100%{background-position:0% 51%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment