Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

stacked-menu

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stacked-menu

A flexible stacked navigation menu.

  • 1.1.12
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
515
increased by4.46%
Maintainers
1
Weekly downloads
 
Created
Source

StackedMenu

A flexible stacked navigation menu writing on JavaScript vanilla and modules.

Table of contents

  1. Get started
  2. What's includes
  3. Usage
  4. Demo
  5. Limitations
  6. Contributing

Get started

Download the latest release of StackedMenu.

What's includes

On download directories and files, you'll see something like this:

dist/
├── css/
│   ├── stacked-menu.css
│   ├── stacked-menu.css.map
│   ├── stacked-menu.min.css
│   └── stacked-menu.min.css.map
├── js/
│   ├── amd/
│   ├── commonjs/
│   ├── es6/
│   ├── umd/
│   ├── stacked-menu.js
│   ├── stacked-menu.js.map
│   ├── stacked-menu.min.js
│   └── stacked-menu.min.js.map
├── scss/
│    ├── _collapsible.scss
│    ├── _core.scss
│    ├── _direction.scss
│    ├── _extras.scss
│    ├── _hoverable.scss
│    ├── _mixins.scss
│    ├── _variables.scss
│    └── stacked-menu.scss
src/
README.md

Usage

Implementing as easy as posible.

Include css file:

<!-- StackedMenu -->
<link href="stacked-menu/dist/css/stacked-menu.min.css" rel="stylesheet">

Include javascript file:

<!-- StackedMenu -->
<script src="stacked-menu/dist/js/stacked-menu.min.js"></script>

Basic template

You mush have stacked-menu element on your markup. The template will look like this:

<div id="stacked-menu" class="stacked-menu">
  <nav class="menu">
    <li class="menu-item">
     <a href="#" class="menu-link">
       <i class="menu-icon fa fa-home"></i>
       <span class="menu-text">Home</span>
       <span class="badge badge-danger">9+</span>
     </a>
    <li>
  </nav>
</div>

Then called:

var menu = new StackedMenu();

Please see API docs for more details.

Demo

StackedMenu demo are included in the download files in the root directory.

Limitations

Browser support
  • Chrome >= 20
  • Firefox >= 24
  • Edge >= 12
  • Explorer >= 8
  • iOS >= 6
  • Safari >= 6
  • Android 2.3
  • Android >= 4
  • Opera >= 12

Contributing

Thank-you for your interest in StackedMenu, Beni Arisandi.

If you notice any bug(s) or have any idea(s) for new feature(s), skin(s), or something else, feel free to open a issue, so we can make StackedMenu better together.

Keywords

FAQs

Package last updated on 25 Nov 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc