Skip to content

Instantly share code, notes, and snippets.

@0xSG
Created February 12, 2022 13:37
Show Gist options
  • Save 0xSG/44ff6b7242343801b18cc6559d33d964 to your computer and use it in GitHub Desktop.
Save 0xSG/44ff6b7242343801b18cc6559d33d964 to your computer and use it in GitHub Desktop.
Shimmer effect CSS
.shimmer {
animation : shimmer 2s infinite;
background: linear-gradient(to right, #eff1f3 4%, #e2e2e2 25%, #eff1f3 36%);
background-size: 1000px 100%;
}
@keyframes shimmer {
0% {
background-position: -1000px 0;
}
100% {
background-position: 1000px 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment