Created
May 16, 2014 19:22
-
-
Save michaelwilhelmsen/73b2c57cf6467571d68b to your computer and use it in GitHub Desktop.
Slide up and slide down transition effect
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
| /* slider in open state */ | |
| .slider { | |
| overflow-y: hidden; | |
| max-height: 500px; /* approximate max height */ | |
| transition-property: all; | |
| transition-duration: .5s; | |
| transition-timing-function: cubic-bezier(0, 1, 0.5, 1); | |
| } | |
| /* close it with the "closed" class */ | |
| .slider.closed { | |
| max-height: 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment