Skip to content

Instantly share code, notes, and snippets.

@jdtdesigns
Last active November 27, 2015 18:54
Show Gist options
  • Save jdtdesigns/2f5eeac096138f05820b to your computer and use it in GitHub Desktop.
Save jdtdesigns/2f5eeac096138f05820b to your computer and use it in GitHub Desktop.
toggle content
.toggle-content {
transform: scaleY(0);
transform-origin: top left;
transition: transform .5s;
&.open {
transform: scaleY(1);
transition: transform .5s;
}
}
$('.toggle-button').on('click', function() {
$('.toggle-content').toggleClass('open');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment