Skip to content

Instantly share code, notes, and snippets.

@Bobz-zg
Created September 9, 2016 16:00
Show Gist options
  • Save Bobz-zg/368e83bb7088e02263b4de8f9181c182 to your computer and use it in GitHub Desktop.
Save Bobz-zg/368e83bb7088e02263b4de8f9181c182 to your computer and use it in GitHub Desktop.
Simple jquery toggle function Raw
.toggler {
overflow: hidden;
max-height: 0;
transition: max-height .3s ease-in;
}
.toggler.active {
max-height: 2000px;
transition: max-height .3s ease-out;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment