Skip to content

Instantly share code, notes, and snippets.

@irvingvjuarez
Created March 29, 2022 00:17
Show Gist options
  • Save irvingvjuarez/092392e04e552b8b2ace3837035277ea to your computer and use it in GitHub Desktop.
Save irvingvjuarez/092392e04e552b8b2ace3837035277ea to your computer and use it in GitHub Desktop.
Skeleton with pure css
.skeleton {
background: linear-gradient(90deg, rgba(250,250,250,1), rgba(200, 199, 199));
background-size: 400% 400%;
animation: loadingAnimation 3s ease-in-out infinite;
}
@keyframes loadingAnimation {
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