Skip to content

Instantly share code, notes, and snippets.

@opejovic
Created April 25, 2020 12:11
Show Gist options
  • Save opejovic/4f282ccc058350ef25626576d1987bbd to your computer and use it in GitHub Desktop.
Save opejovic/4f282ccc058350ef25626576d1987bbd to your computer and use it in GitHub Desktop.
Animated placeholder sample 3.
.animated-placeholder {
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