Last active
October 28, 2022 10:05
-
-
Save acidjazz/e8a8131b2864b83310f0e1370858fd33 to your computer and use it in GitHub Desktop.
tailwind skeleton 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
.skeleton { | |
--text-opacity: 0; | |
background-image: linear-gradient(100deg, #edf2f7 0%, #f4f7fa 20%, #edf2f7 40%); | |
background-position: 50%; | |
background-size: 200%; | |
animation: skeleton 1.25s infinite linear; | |
} | |
.skeleton-teal { | |
background-image: linear-gradient(100deg, #b4c5f8 0%, #cad8f9 20%, #b4c5f8 40%); | |
} | |
.skeleton-white { | |
background-image: linear-gradient(100deg, #f9fafb 0%, #ffffff 20%, #f9fafb 40%); | |
} | |
@keyframes skeleton { | |
0% { | |
background-position: 50%; | |
} | |
50%, 100% { | |
background-position: -100% | |
} | |
} |
Author
acidjazz
commented
Dec 28, 2020
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment