🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

Noticejs is a very small (3kb minified) jQuery plugin for displaying notification messages which can be integrated into any CSS framework (e.g. Bootstrap).

Notification

Documentation

Notice.js

A beautiful and modern, yet fully customizable notification library.

Download & Install

  • You can quickly install Notice.js via NPM:
npm install notice.js --save
bower install notice.js --save

Link styles

<link rel="stylesheet" href="dist/noticejs.css" />

Add scripts

<script src="dist/notice.js"></script>

Usage

Basic:

new NoticeJs({     text: 'Notification message',     position: 'topLeft', }).show();

With animation:

Supports css animations, animate.css

new NoticeJs({     text: 'Notification message',     position: 'topLeft',     animation: {         open: 'animated bounceInRight',         close: 'animated bounceOutLeft'     } }).show();

You May Also Like