Skip to content

Instantly share code, notes, and snippets.

@Ikxyz
Created January 13, 2021 08:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ikxyz/cc5491b1d1e4b2ebaea173ec8ba269af to your computer and use it in GitHub Desktop.
Save Ikxyz/cc5491b1d1e4b2ebaea173ec8ba269af to your computer and use it in GitHub Desktop.
<script lang="javascript">
$(function(){
var navBtn = $(".nav-btn");
var mobileNav = $(".mobile-nav");
var nav = $("#nav");
navBtn.on("click", function(){
$(this).toggleClass('active');
nav.toggleClass('active');
mobileNav.slideToggle(300,function(){
$(this).css('overflow-y',"auto");
});
$('body').toggleClass('mobile');
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment