Skip to content

Instantly share code, notes, and snippets.

@opejovic
Last active April 24, 2020 21:24
Show Gist options
  • Save opejovic/0328ec04bae4cb4dedf00faaa81a16ca to your computer and use it in GitHub Desktop.
Save opejovic/0328ec04bae4cb4dedf00faaa81a16ca to your computer and use it in GitHub Desktop.
.animated-placeholder-two {
background: linear-gradient(90deg, #eef2f6, #eef4fa, #ffffff, #eef4fa, #eef2f6);
background-size: 600% 600%;
-webkit-animation: left-to-right 2.5s ease-out infinite;
-moz-animation: left-to-right 2.5s ease-out infinite;
animation: left-to-right 2.5s ease-out infinite;
}
@-webkit-keyframes left-to-right {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
@-moz-keyframes left-to-right {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
@keyframes left-to-right {
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