
vToasts is a minimal, easy-to-use JavaScript plugin to create growl-style notifications that slide in from the edge of the screen and slide out after a certain timeout.
How to use it:
Import the vToasts’ JavaScript and CSS files into the html file.
<link href="vToasts.css" rel="stylesheet"> <script src="vToasts.js"></script>
Create a new notification.
vToasts.toast({
title: 'Notification Title',
type: 'success',
content: 'Notification Content'
});All possible notification types.
- success
- info
- warn
- error







