vanillajs-components
v1.0.1
Published
Simple to use modal / alert / dialog / popup / toast / overlay / notification. Created without any framework. No javascript knowledge required! Works on every browser and device! IE >= 9
Downloads
64
Maintainers
Readme
I created this JS library as an open-source project to provide beautiful alert box messages, overlay box and toaster made with HTML, CSS and JS only. Feel free to contribute with a pull request or suggestions.
Installation
With NPM
npm install vanillajs-components
//css
import '~vanillajs-components/dist/vanillajs-components.min.css'
// javascript
import { overlay,confirm,toast,tabs,steps } from 'vanillajs-components';
Without NPM
Download
<head>
<!-- In Head Tag -->
<link rel="stylesheet" href="/path/to/dist/vanillajs-components.min.css">
</head>
<body>
<!-- End Of Body Tag -->
<script src="/path/to/dist/bundle.iife.js"></script>
</body>