Don't make me think - Dead simple user notification.
npm install notti
> Don't make me think - Dead simple user notification.
---

#### Install
Npm: npm install notti
CDN: https://unpkg.com/notti@0.0.7
#### The Gist:
``javascript
import { notti } from 'notti';
notti('Hello User!');
notti({
// HTML Element
message: 'Hello! User',
isHTML: true,
style : {
backgroundColor: '#333',
color:'#fff',
bottom: '10px',
right: '10px'
},
onHide: () => {
console.log('Awesome notti.js!')
}
});
`
`javascript
/**
* @name notti
* type Function
* @description Show an notification
* @param {String || Object } The message or customizable Object
*/
notti('Hi Folks!');
// or
const customizable = {
message: 'Hi folks',
style: {
backgroundColor: '#333',
color: '#fff',
top: '10px',
right: '10px',
}
}
notti(customizable);
`
Customizable params
`javascript
/**
* @param {String} message The notification message
* @param {Object} style Customizable style
* @param {Boolean} autoHide Auto hide the notification box
* @param {Boolean} hideOnClick Hide the notification when clicked
* @param {Boolean} isHTML If the message string contains HTML Element
* @param {Integer} delay The notification hide delay time
* @param {Function} onHide The Function that will be called when the notification disappear
**/
const config = {
// required
message: 'Hi Folks' || '
Hi Folks
',