Skip to content

Instantly share code, notes, and snippets.

@cobaltapps
Created May 26, 2017 19:23
Show Gist options
  • Save cobaltapps/c09c5922f151c0fd44bccfc8efb3bd83 to your computer and use it in GitHub Desktop.
Save cobaltapps/c09c5922f151c0fd44bccfc8efb3bd83 to your computer and use it in GitHub Desktop.
Hamburger Menu Animation Effects JS
jQuery(document).ready(function($) {
$('.hamburger').click(function() {
$(this).toggleClass('is-active');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment