Last active
July 31, 2024 16:04
-
-
Save vosidiy/744b956427b34425ad5f23fdf68211ff to your computer and use it in GitHub Desktop.
Bootstrap megamenu
This file contains 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
<nav class="navbar navbar-expand-lg navbar-dark bg-primary"> | |
<a class="navbar-brand" href="#">Brand</a> | |
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#main_nav"> | |
<span class="navbar-toggler-icon"></span> | |
</button> | |
<div class="collapse navbar-collapse" id="main_nav"> | |
<ul class="navbar-nav"> | |
<li class="nav-item active"> <a class="nav-link" href="#">Home </a> </li> | |
<li class="nav-item"><a class="nav-link" href="#"> About </a></li> | |
<li class="nav-item"><a class="nav-link" href="#"> Services </a></li> | |
<li class="nav-item dropdown has-megamenu"> | |
<a class="nav-link dropdown-toggle" href="#" data-toggle="dropdown"> Mega menu </a> | |
<div class="dropdown-menu megamenu"> | |
This is content of megamenu. <br> | |
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod | |
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, | |
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo | |
consequat. | |
</div> <!-- dropdown-mega-menu.// --> | |
</li> | |
</ul> | |
</div> <!-- navbar-collapse.// --> | |
</nav> |
This file contains 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
// jQuery code | |
// Prevent closing from click inside dropdown | |
$(document).on('click', '.dropdown-menu', function (e) { | |
e.stopPropagation(); | |
}); |
This file contains 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
@media all and (min-width: 992px) { | |
.navbar{ padding-top: 0; padding-bottom: 0; } | |
.navbar .has-megamenu{position:static!important;} | |
.navbar .megamenu{left:0; right:0; width:100%; padding:20px; } | |
.navbar .nav-link{ padding-top:1rem; padding-bottom:1rem; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment