Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Last active October 26, 2016 14:36
Show Gist options
  • Save Farmatique/afa2e33ee1a1fb96ba91273bc6ff99dd to your computer and use it in GitHub Desktop.
Save Farmatique/afa2e33ee1a1fb96ba91273bc6ff99dd to your computer and use it in GitHub Desktop.
Script for mobile dropdown menu in header with scroll
/* set height for mobile menu */
var headerHeight = 80;
jQuery('.navbar-toggle').on('click', function(){
jQuery('.navbar-collapse').delay(400).queue(function(next){
jQuery(this).css('height', window.innerHeight-headerHeight);
next();
});
})
<div class="collapse navbar-collapse" id="navbar-collapse-1">
<ul class="nav navbar-nav">
...
</ul>
</div>
.nav.navbar-nav{
height: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment