Skip to content

Instantly share code, notes, and snippets.

@michaelwilhelmsen
Created May 16, 2014 19:22
Show Gist options
  • Select an option

  • Save michaelwilhelmsen/73b2c57cf6467571d68b to your computer and use it in GitHub Desktop.

Select an option

Save michaelwilhelmsen/73b2c57cf6467571d68b to your computer and use it in GitHub Desktop.
Slide up and slide down transition effect
/* 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