Skip to content

Instantly share code, notes, and snippets.

@DevShahidul
Created July 13, 2017 11:13
Show Gist options
  • Select an option

  • Save DevShahidul/0df6bceb5ebdd3598007014c4116e43f to your computer and use it in GitHub Desktop.

Select an option

Save DevShahidul/0df6bceb5ebdd3598007014c4116e43f to your computer and use it in GitHub Desktop.
$("#mobile-nav").click(function(){
$(".header-area").addClass("is-animating")
setTimeout(function(){
$(".header-area").removeClass("is-animating")
}, 2000);
if($("#main-nav-wrap").hasClass("navActive")){
$("#main-nav-wrap").addClass("is-exiting")
}
setTimeout(function(){
$("#main-nav-wrap").removeClass("is-exiting")
}, 2000);
$("#main-nav-wrap").toggleClass("navActive");
$(".header-area").toggleClass("navVisible")
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment