notiFire.js Demos

Basic Example: notifire({ msg: 'this is a test message' });
Choose the type: notifire({ msg: 'Yeah!!! Success!!!', types: 'success' });
Any size you want: notifire({ msg: 'this is a test message with width of 400px and height of 200px', types: 'info', width: 400, height: 200 });
Left or right? notifire({ msg: 'I am on the right', types: 'warning', position: 'right' });
When should I disappear? notifire({ msg: 'I will be gone in 1 second!!!', types: 'danger', timeout: 1000 });