Skip to content

Instantly share code, notes, and snippets.

@MaximeKoitsalu
Created October 8, 2018 16:22
Show Gist options
  • Save MaximeKoitsalu/d7dd70ac26b5dbf86130d70adea87173 to your computer and use it in GitHub Desktop.
Save MaximeKoitsalu/d7dd70ac26b5dbf86130d70adea87173 to your computer and use it in GitHub Desktop.
top-card-animation
background: linear-gradient(270deg, #00b2e8, #bb99ff);
background-size: 400% 400%;
-webkit-animation: top-card-animation 30s ease infinite;
-moz-animation: top-card-animation 30s ease infinite;
-o-animation: top-card-animation 30s ease infinite;
animation: top-card-animation 30s ease infinite;
@-webkit-keyframes top-card-animation {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
@-moz-keyframes top-card-animation {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
@-o-keyframes top-card-animation {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
@keyframes top-card-animation {
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