Collapse navbar items dynamically, when there isn't enough space on the screen
Collapse navbar items dynamically, when there isn’t enough space on the screen.
It requires DOM4 to work on IE >= 10
It requires sensor@0.0.6/ResizeSensor.min.js">ResizeSensor to work correctly.
Copy the collapsible.js
file, available in the dist
folder, and include it
in your HTML page.
You must have Node and npm installed on your system.
Clone this repository:
git clone https://github.com/domcorvasce/collapsible
Then, go into the folder and install the development dependencies:
cd collapsible
yarn
You’re ready to build the asset:
yarn build
<!-- .... -->
<div class="navbar navbar-lg no-padding no-box-shadow navigation-bar">
<ul class="nav navbar-nav nav-tabs nav-tabs-bottom bottom-divided no-margin">
<li><a href="#startups">All Startups</a></li>
<li><a href="#combinators">Combinators</a></li>
<li><a href="#usa">USA</a></li>
<li><a href="#europe">Europe</a></li>
<li><a href="#asia">Asia</a></li>
<li><a href="#challenges">Challenges</a></li>
<li><a href="#designcontests">Design Contests</a></li>
<li><a href="#devws">Dev Workshops</a></li>
<li><a href="#businessws">Business Workshops</a></li>
<li><a href="#marketingsessions">Marketing Sessions</a></li>
<li><a href="#credits">Credits</a></li>
</ul>
</div>
<!-- .... -->
const collapsible = new Collapsible('.navbar-nav', 200);
collapsible.render();
Released under MIT license.