Created
May 2, 2020 19:43
-
-
Save colbyfayock/d155418975d1e0e04b2805e285296033 to your computer and use it in GitHub Desktop.
CSS Loading Animation
This file contains 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
/** | |
* 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