Hi, there! 👋 This's a dead simple library script toast notifications. Based on Javascript.
Demo 🚀
<link rel="stylesheet" href="toaster.min.css" />
<script src="toaster.min.js"></script>
const toast = new toaster();
toast.error('Please wait a few minutes before you try again.');
Method | Сall method |
---|---|
default | toast.default() |
info | toast.info() |
success | toast.success() |
warning | toast.warning() |
error | toast.error() |
new toaster({
selector: '.toaster',
timeout: 5000,
position: ['bottom', 'right'],
unsafe: 1,
});
0.0.4