All Projects → kmlpandey77 → bootnavbar

kmlpandey77 / bootnavbar

Licence: MIT License
Bootstrap 4 multilevel dropdown navbar (multilevel menu) on hover

Programming Languages

HTML
75241 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to bootnavbar

PopupFilterMenu
仿猫眼电影多条件搜索菜单弹框
Stars: ✭ 16 (-62.79%)
Mutual labels:  dropdown-menus
angular-custom-dropdown
Angular2+ Dropdown. Simple dropdowns without relying on CSS frameworks.
Stars: ✭ 16 (-62.79%)
Mutual labels:  dropdown-menus
DropDownTableView
Here is a drop-down TableView.
Stars: ✭ 16 (-62.79%)
Mutual labels:  dropdown-menus
ContextMenuSwift
A better version of iOS 13 Context Menu
Stars: ✭ 162 (+276.74%)
Mutual labels:  dropdown-menus
Choices
A vanilla JS customisable select box/text input plugin ⚡️
Stars: ✭ 4,505 (+10376.74%)
Mutual labels:  dropdown-menus
Dropdownmenu
一个实用的多条件筛选菜单
Stars: ✭ 3,565 (+8190.7%)
Mutual labels:  dropdown-menus

BootNavbar

license

Table of contents:

Introduction

Bootstrap 4 Responsive Navbar with Multi-level Dropdowns
This is a fully responsive multilevel dropdown (Treeview menu) navbar opened on hover.

Preview

Multi level hover dropdown Navbar for bootstrap 4

BootNavbar Demo

View Demo

Requirement

jQuery
boostrap 4
animated.css

Download

Download source

BootNavbar CDN

css

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/kmlpandey77/bootnavbar/css/bootnavbar.css">

js

<script src="https://cdn.jsdelivr.net/gh/kmlpandey77/bootnavbar/js/bootnavbar.js"></script>

How to use

To use BootNavbar on your website, simply drop the stylesheet into your document's <head>.

<head>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
  <link rel="stylesheet" href="css/bootstrap.min.css">
  <link rel="stylesheet" href="css/bootnavbar.css">
</head>

And, simply drop the JS into your document's <body>.

<body>
	  ...
	  ...
	
	  <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
    <script src="js/bootstrap.min.js"></script>
    <script src="js/bootnavbar.js" ></script>
    <script>
        $(function () {
            $('#bootnavbar').bootnavbar({
              //options

              //animation: false

            });
        })
    </script>
<body>

And, HTML.

<nav class="navbar navbar-expand-lg navbar-light bg-light" id="bootnavbar">
  ...
  ...
</nav>

Options

animation

Type: Boolean

Default: true

Enable/Disable animation effect

animateIn

Type: String

Default: 'fadeIn'

Value: 'slideInUp','zoomIn'

View more option in animate.css

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].