@abderraouf05/dropdown-npm
v1.0.9
Published
This package is a drop down menu builded with js and webpack.
Readme
Dropdown Menu
This package is a drop down menu builded with js and webpack.
Installation
npm install @abderraouf05/dropdown-npmUsage
import{ createDropdown } from "/node_modules/@abderraouf05/dropdown-npm/src/index.js";
const dropDownMenu = createDropdown(itemsList);Example
import { createDropdown } from "/node_modules/@abderraouf05/dropdown-npm/src/index.js";
const menuItems = ["Home", "About", "Services", "Contact"];
const dropdown = createDropdown(menuItems);
document.body.appendChild(dropdown);<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body></body>
<script src="./index.js" type="module"></script>
</html>