Skip to content

Instantly share code, notes, and snippets.

@reymon359
Forked from colbyfayock/loading.css
Created May 9, 2020 15:00
Show Gist options
  • Save reymon359/656967d3ed88632b73562f3e28e7b7a5 to your computer and use it in GitHub Desktop.
Save reymon359/656967d3ed88632b73562f3e28e7b7a5 to your computer and use it in GitHub Desktop.
CSS Loading Animation
/**
* Loading Animation Snippet
*/
.loading {
color: transparent;
background: linear-gradient(100deg, #eceff1 30%, #f6f7f8 50%, #eceff1 70%);
background-size: 400%;
animation: loading 1.2s ease-in-out infinite;
}
@keyframes loading {
0% {
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