Sliding Notification Plugin With jQuery And Bootstrap alarm box js - Download Sliding Notification Plugin With jQuery And Bootstrap - alarm-box.js

Download Sliding Notification Plugin With jQuery And Bootstrap – alarm-box.js

Posted on

This time I will share jQuery Plugin and tutorial about Sliding Notification Plugin With jQuery And Bootstrap – alarm-box.js, hope it will help you in programming stack.

Sliding Notification Plugin With jQuery And Bootstrap alarm box js - Download Sliding Notification Plugin With jQuery And Bootstrap - alarm-box.js
File Size: 5.22 KB
Views Total: 930
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   

alarm-box.js is a jQuery plugin used to display stacked sliding notification boxes with custom titles,buttons and messages, styled with Twitter Bootstrap.

How to use it:

1. Load Bootstrap’s style sheet and the alarm-box.css in the head section of the webpage.

1 <link rel="stylesheet" href="bootstrap.min.css">
2 <link rel="stylesheet" href="alarm-box.css">

2. Load jQuery library and the alarm-box.js at the bottom of the webpage.

1 <script src="//code.jquery.com/jquery.min.js"></script>
2 <script src="alarm-box.js"></script>

3. The fastest way to create a sliding notification box on the webpage.

1 createPopBox('<a href="https://www.jqueryscript.net/tags.php?/Notification/">Notification</a> Message','Notification Title');

4. Customize the notification boxes with the following options.

01 <a href="https://www.jqueryscript.net/tags.php?/Modal/">Modal</a>Options={
02  
03   // height / width of notification box
04   modalHeight:140,
05   modalWidth:400,
06  
07   // max number of notification boxes
08   maxNum:3,
09  
10   // notification title
11   modalTitle:'test title',
12  
13   // bottom offset
14   bottomHeight:0,
15  
16   // header title
17   modalHeaderHeight:30,
18  
19   // margin
20   modalMargin:4,
21  
22   // custom button text
23   btnInnerFirst:'Cancel',
24   btnInnerSecond:'Okey',
25 }
26  
27 initModal(ModalOptions);

This awesome jQuery plugin is developed by wzdxy. For more Advanced Usages, please check the demo page or visit the official website.

source : jqueryscript.net