Created
April 9, 2020 13:41
-
-
Save StMotorSpark/e51766f56918769890663c6af2886834 to your computer and use it in GitHub Desktop.
Adding in the fade in animation keyframes
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
| @keyframes animateFadeIn { | |
| 0% { | |
| opacity: 0; | |
| } | |
| 100% { | |
| opacity: 1; | |
| } | |
| } | |
| .fadeIn { | |
| animation: animateFadeIn 0.8s; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment