npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ml-stack-nav

v1.1.3

Published

Customizable, responsive, accessible, easy-to-use multi-level stack navigation menu with slide effect.

Downloads

26

Readme

Multi-level stack navigation (jQuery mlStackNav)

Customizable, accessible, easy-to-use multi-level stack navigation menu.

The purpose behind this project is to provide a fully functional, responsive and usable navigation with minimal styling, which can also be used as a good starting point to implement your own custom design.

Demo

https://damianwajer.github.io/ml-stack-nav/

Requirements

Browser support

  • All modern browsers such as Chrome, Firefox, Safari, Edge (last 2 versions) and Internet Explorer 10+
  • Stock browser on Android 4.0+ and Safari on iOS 7+
  • Internet Explorer 9 is also supported but without transition animations and with some additional CSS (I recommend placing IE 9 rules within conditional comment in <head> section of the HTML file or in some separate .css file with other IE 9 fixes):
<!--[if IE 9]>
<style type="text/css">
    .ml-stack-nav {
        display: none;
    }
    
    .ml-stack-nav.is-open {
        display: block;
    }
</style>
<![endif]-->

Download

Usage

To get started just add required styles:

<link rel="stylesheet" href="dist/ml-stack-nav.css">

Include jQuery:

<script src="//code.jquery.com/jquery-3.3.1.min.js"></script>

…and the plugin JS file:

<script src="dist/ml-stack-nav.js"></script>

Navigation HTML markup should be placed at the top-level position directly under the body element in the document to avoid the stacking context issues.

<body>
    <nav class="ml-stack-nav js-ml-stack-nav">(…)</nav>
</body>

Please see index.html file for demo and code example.

Finally, initiate the plugin:

$(".js-ml-stack-nav").mlStackNav();

The dist/ml-stack-nav.js and dist/ml-stack-nav.css files contain all what is necessary for the menu to work properly and they should not be edited directly. Unlike them, dist/ml-stack-nav-theme.css theme file provides example styles for the navigation and can be edited, extended or completely replaced with your own styles (the minified files .min.css and .min.js are also available in dist directory and you can use them on production instead of regular ones).

Advanced usage

The goal behind the mlStackNav is to provide a good starting point to implement navigation with custom design, so advanced usage is highly recommended. In order to take full advantage of the mlStackNav, please keep in mind its most important features:

  • separation of the appearance and the functionality
  • CSS class names according to BEM methodology
  • state rules inspired by SMACSS (Scalable and Modular Architecture for CSS)
  • js- prefixed classes to decouple JavaScript classes from CSS ones

Multiple instances

Multi-level stack navigation also supports multiple instances of the menu.

You can use it to implement as many navigation menus as you want by simply initializing different menus with separate toggle buttons. For example:

$(".js-ml-stack-nav").mlStackNav({
    navToggleSelector: ".js-ml-stack-nav-toggle"
});

$(".js-ml-stack-nav-2").mlStackNav({
    navToggleSelector: ".js-ml-stack-nav-2-toggle"
});

or by providing jQuery selector inside data-nav-toggle attribute:

<button type="button" class="ml-stack-nav-toggle" id="ml-stack-nav-toggle-1">(…)</button>

<nav class="ml-stack-nav js-ml-stack-nav" data-nav-toggle="#ml-stack-nav-toggle-1">(…)</nav>

<button type="button" class="ml-stack-nav-toggle" id="ml-stack-nav-toggle-2">(…)</button>

<nav class="ml-stack-nav js-ml-stack-nav" data-nav-toggle="#ml-stack-nav-toggle-2">(…)</nav>

Navigation with JavaScript disabled

mlStackNav can still works in its basic form even when JavaScript is disabled. You just need to make sure that:

  • no-js class is present on the top-level element on your page (e.g. on html element: <html class="no-js">
  • no-js is removed before mlStackNav initialization, e.g. $("html").removeClass("no-js")
  • a link with the anchor matching the navigation id is used instead of a button (e.g. <a href="#ml-stack-nav-1" class="ml-stack-nav-toggle"> and <nav id="ml-stack-nav-1" class="ml-stack-nav js-ml-stack-nav">)

Options

navToggleSelector

Type: String

Default: .ml-stack-nav-toggle

jQuery selector with toggle button element (or a link).

openClass

Type: String

Default: is-open

Class name for open menu items (also background items below current level).

activeClass

Type: String

Default: is-active

Class name for currently active menu item and active toggle button.

zIndexValue

Type: Number

Default: 900

CSS z-index property for navigation menu container.

Methods

Using methods you can interact with the plugin programmatically from within your scripts, e.g. you can open or close the navigation on some custom event.

Available methods:

  • open Open the navigation.
  • close Close the whole navigation.
  • toggle Open the navigation if it's closed, close if it's open.
  • moveBack Move to the previous menu level.
  • isOpen Check if the navigation is currently open.

Example:

$(".ml-stack-nav__link").on("click", function () {
    $(".js-ml-stack-nav").mlStackNav("close");
});

Events

Using events you can run some custom code, e.g. when menu opens or closes.

  • show.ml-stack-nav This event is triggered before the navigation opens (immediately when the open method is called).
  • hide.ml-stack-nav This event is triggered before the navigation closes (immediately when the close method is called).

Example:

$(".js-ml-stack-nav")
    .on("show.ml-stack-nav", function (e) {
        console.log(e);
        alert("The navigation will open!");
    })
    .on("hide.ml-stack-nav", function (e) {
        console.log(e);
        alert("The navigation will close!");
    });

TODO

  • add swipe support
  • off-canvas mode (push)
  • more themes
  • tests

Support

Please open an issue for support.

Contributing

Please contribute using Github Flow. Create a branch, add commits, open a pull request.