Last active
October 26, 2016 14:36
-
-
Save Farmatique/afa2e33ee1a1fb96ba91273bc6ff99dd to your computer and use it in GitHub Desktop.
Script for mobile dropdown menu in header with scroll
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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