-
-
Save ichim-david/7df09466a2138fe46558b61ddd74d87e to your computer and use it in GitHub Desktop.
Pure CSS slidedown / slideup animation using transform translateY
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
| .slide-up, .slide-down { | |
| overflow:hidden; | |
| } | |
| .slide-up > div, .slide-down > div { | |
| transform: translateY(-100%); | |
| transition: .4s ease-in-out; | |
| } | |
| .slide-down > div { | |
| transform: translateY(0); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment