Don't make me think - Dead simple user notification.
- Tiny size: 2.2kb
- No external CSS dependency
- No jQuery dependency
- Fully customizable
Npm: npm install notti
CDN: https://unpkg.com/notti@0.0.5
import { notti } from 'notti';
notti('Hello User!');
notti({
// HTML Element
message: '<strong>Hello!</stong> User',
isHTML: true,
style : {
backgroundColor: '#333',
color:'#fff',
bottom: '10px',
right: '10px'
},
onHide: () => {
console.log('Awesome notti.js!')
}
});
/**
* @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
/**
* @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' || '<p>Hi <span class="username">Folks</span></p>',
// just true if your message contains HTML Element
isHTML: false, //default
//optional
style: {}, //default
//optional
autoHide: true, //default
//optional
hideOnClick: true, //default
//optional
delay: 2000, //default
//optional
onHide: ()=>{console.log('Awesome notti.js')}
}