Skip to content

Instantly share code, notes, and snippets.

@DmitriBarannyk
Created May 3, 2019 08:10
Show Gist options
  • Save DmitriBarannyk/73ffab4d8e11df503a020d5ed6a10e6c to your computer and use it in GitHub Desktop.
Save DmitriBarannyk/73ffab4d8e11df503a020d5ed6a10e6c to your computer and use it in GitHub Desktop.
fadeout mobile menu
//плавно исчезающие мобильное меню
$(".toggle-mnu").click(function(){
if ($(".top_mnu").is(":visible")) {
$(".top_mnu").fadeOut(600);
$(".top_mnu li a").removeClass("zoomIn animated");
} else {
$(".top_mnu").fadeIn(600);
$(".top_mnu li a").addClass("zoomIn animated");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment