Created
April 9, 2020 13:36
-
-
Save StMotorSpark/0b8651c8a2a03d27f3292d0eace3f676 to your computer and use it in GitHub Desktop.
Adding in the keyframe animations
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 animateSlideOut { | |
| 0% { | |
| margin-left: 0px; | |
| } | |
| 100% { | |
| margin-left: -325px; | |
| } | |
| } | |
| .slideOut { | |
| animation: animateSlideOut 0.8s; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment