html-dropdown-menu

1.0.3 • Public • Published

DropDownMenu.js

A javascript library for create drop down menu in your app.

Features

  • Create Drop Down Menu
  • Nestable(No Limit)

Screenshot

screenshot

install

script

<script src="path/to/dist/index.min.js"></script> <script src="https://unpkg.com/html-dropdown-menu/dist/index.min.js"><script>

CSS

<link rel="stylesheet" href="path/to/dist/style.css"> <link rel="stylesheet" href="https://unpkg.com/html-dropdown-menu/dist/dropdown.css">

How To Use

createDropDownMenu(appendTo,content)

appendTo : HTMLElement

The Menu will be appended to the element.

content Array<DropDownMenuList>

[
    DropdownListCategory1,
    DropdownListCategory2,
    DropdownListCategory3,
    ...
]

DropDownMenuList

{
    name:string,
    content: Array<DropDownMenuListLabel>
}

DropDownMenuListlabel

{
    text:string;
    onclick?:Function;
    children?: Array<DropDownMenuListLabel>
}

If the menu label has any children,onclick will be not executed.

Example Menu Content

[
    {
        name: "File",
        content: [
            {
                text: "New Instance",
                onclick:()=>window.open("url")
            },
            {
                text: "Open File",
                onclick:()=>...;
            },
            {
                text: "New Folder",
                onclick:()=>...;
            },
            {
                text: "Recent Opened",
                children: [
                    {
                        text: "path/to/file",
                        onclick:()=>...;
                    }
                ]
            }
        ]
    }
]

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.3
    3
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.3
    3
  • 1.0.2
    0
  • 1.0.1
    0
  • 1.0.0
    0

Package Sidebar

Install

npm i html-dropdown-menu

Weekly Downloads

3

Version

1.0.3

License

MIT

Unpacked Size

34.4 kB

Total Files

11

Last publish

Collaborators

  • mksk