Skip to content

Instantly share code, notes, and snippets.

@mattbrett
Created February 5, 2015 23:23
Show Gist options
  • Save mattbrett/17af744307660cdc7349 to your computer and use it in GitHub Desktop.
Save mattbrett/17af744307660cdc7349 to your computer and use it in GitHub Desktop.
Toggle a mobile menu with bounce in/out animate, courtesy of animate.css
$('#mobile-menu-open').click(function() {
$('nav').removeClass('bounceOutUp');
$('nav').addClass('show bounceInDown');
});
$('#mobile-menu-close').click(function() {
$('nav').removeClass('bounceInDown');
$('nav').addClass('bounceOutUp');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment