ultimate-pop-ups
v1.0.2
Published
This is a package that helps you create popup menus quickly. check GitHub for documentation
Downloads
9
Readme
This is a pop up menu module.
To use the module you just call the popUp function and enter the links that you need as paramaters.
EXAMPLE:
import { popUp } from "ultimate-pop-ups";
const btn = document.querySelector('button');
btn.addEventListener('click', () => { popUp('home', 'about', 'contact'); });