1.0.0 • Published 7 months ago

@ajoy26/menu-drop-down v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
7 months ago

ModernDropdown

An easy-to-use dropdown animation for modern web applications.

Installation

npm install @ajoy26/menu-drop-down

Usage

  1. Import ModernDropdown into your JavaScript:

    import { ModernDropdown } from "@ajoy26/menu-drop-down";
  2. Add the following structure to your HTML:

<button data-dropdown-toggle="myMenuID">Click Me</button>
<div id="myMenuID">
  <!-- Your dropdown content goes here -->
</div>
  1. Instantiate ModernDropdown:
const dropdownElement = document.querySelector("button");
new ModernDropdown(dropdownElement);

Every button with a data-dropdown-toggle that matches an id of a menu will now toggle the visibility of the associated menu with a smooth opacity transition.

1.0.0

7 months ago