Skip to content

Instantly share code, notes, and snippets.

View akash-potdar7's full-sized avatar

Akash akash-potdar7

View GitHub Profile
@akash-potdar7
akash-potdar7 / gradient-animation.css
Last active February 13, 2018 10:24 — forked from anonymous/my.css
CSS Gradient Animation
background: linear-gradient(276deg, #665924, #f71a1a, #2718a5, #37a1b2, #37a1b2, #e484f3, #e484f3);
background-size: 1400% 1400%;
-webkit-animation: AnimationName 39s ease infinite;
-moz-animation: AnimationName 39s ease infinite;
-o-animation: AnimationName 39s ease infinite;
animation: AnimationName 39s ease infinite;
@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}