Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
bs-push-nav
Advanced tools
[![Build Status](https://travis-ci.org/pencilpix/bs.push.nav.svg?branch=develop)](https://travis-ci.org/pencilpix/bs.push.nav) ### bs.push.nav JQuery plugin depend on bootstrap navigation to convert it into a push/slide menu for small screen widths
JQuery plugin depend on bootstrap navigation to convert it into a push/slide menu for small screen widths
you can use bower to install bs.push.nav using the following command.
$ bower install bs-push-nav --save
or manually via downloading repository of the plugin and attach the required files to make it work.
include CSS just after bootstrap.css files at your <head>
<link rel="stylesheet" href="dist/styles/jquery.bs.push.nav.min.css"/>
then include JS file after jquery and bootstrap.js at the bottom of your <body>
or at you set you js files to be.
<script src="dist/scripts/jquery.bs.push.nav.min.js"></script>
all html structure required is a button that trigger the menus you want to convert into push/slide at given breakpoint
<button type="button" class="navbar-toggle" data-toggle="bsPushNav" data-target="#menu1 #menu2" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- call the plugin -->
<script>
jQuery(document).ready(function($) {
$('.navbar-toggle').bsPushNav();
});
</script>
bs.push.nav has many options that makes you control your menus
<script>
jQuery(document).ready(function($) {
var options = {
breakpoint: 768, // the breakpoint that determine the screen width to convert menus
typeClass: 'slide', // the default type menu is 'slide' you can set it to 'push'
targetsList: ['#menu1', '#menu2'], // or you can set it via data-target="#menu1 #menu2"
direction: 'left' // the default direction, also you can set it to right
};
$('.navbar-toggle').bsPushNav(options);
});
</script>
Event | Description |
---|---|
menuEnabled | that event will be triggered when the window hit the breakpoint and when template is ready |
menuDisabled | when window is resized and break the breakpoint and the template reverted to origin |
beforeShow | triggered when the button is clicked just before the menu is shown |
shown | triggered when the menu is shown |
beforeHide | triggered just before the menu is hidden |
hidden | triggered after hiding the menu |
using event:
$(document).on('beforeShow', '.btn', function(e){
// do some stuff
});
Method | Description |
---|---|
'show' | shows the menu |
'hide' | hides the menu |
'destroy' | destroy and dettach all events applied to the plugin instance |
FAQs
[![Build Status](https://travis-ci.org/pencilpix/bs.push.nav.svg?branch=develop)](https://travis-ci.org/pencilpix/bs.push.nav) ### bs.push.nav JQuery plugin depend on bootstrap navigation to convert it into a push/slide menu for small screen widths
The npm package bs-push-nav receives a total of 3 weekly downloads. As such, bs-push-nav popularity was classified as not popular.
We found that bs-push-nav demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.