Created
September 9, 2016 16:00
-
-
Save Bobz-zg/368e83bb7088e02263b4de8f9181c182 to your computer and use it in GitHub Desktop.
Simple jquery toggle function Raw
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
.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