Skip to content

Instantly share code, notes, and snippets.

@Mons1eurEnzo
Last active September 30, 2016 06:32
Show Gist options
  • Save Mons1eurEnzo/f1cbd739eaa3066eb5641f6686be40d7 to your computer and use it in GitHub Desktop.
Save Mons1eurEnzo/f1cbd739eaa3066eb5641f6686be40d7 to your computer and use it in GitHub Desktop.
jQuery - Click (In & Out)
$(".toggle-mnu, .menu_item").click(function() {
$(".sandwich").toggleClass("active");
});
$(".toggle-mnu").click(function() {
if ($(".top_mnu").is(":visible")){
$(".top_mnu").fadeOut(600);
$(".top_mnu li a").removeClass("fadeInUp animated");
} else {
$(".top_mnu").fadeIn(600);
$(".top_mnu li a").addClass("fadeInUp animated");
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment