Created
February 12, 2022 13:37
-
-
Save 0xSG/44ff6b7242343801b18cc6559d33d964 to your computer and use it in GitHub Desktop.
Shimmer effect CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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