Last active
October 19, 2021 22:26
-
-
Save unrealapex/15b85442aa6afcb340112c6a17fcfd1a to your computer and use it in GitHub Desktop.
css fade in and out animation
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
| .fade { | |
| animation: fade 2s ease-in infinite; | |
| } | |
| @keyframes fade { | |
| 0% { | |
| opacity: 0; | |
| } | |
| 25% { | |
| opacity: 0.5; | |
| } | |
| 50% { | |
| opacity: 1; | |
| } | |
| 75% { | |
| opacity: 0.5; | |
| } | |
| 100% { | |
| opacity: 0; | |
| } | |
| } |
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
| <div class="fade">loading</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment