Simple Adaptive Notification Plugin with CSS3 Animations - NotifyMeNow

File Size: 5.1 KB
Views Total: 223
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   
Simple Adaptive Notification Plugin with CSS3 Animations - NotifyMeNow

NotifyMeNow is a minimalist jQuery notification plugin to show responsive informative messages with CSS3 based fadeIn, fadeOut animations that auto hide after a specified delay time.

How to use it:

1. Include the required notifyMeNow.css for default notification styles.

<link rel="stylesheet" href="css/notifyMeNow.css">

2. Include jQuery library and the jQuery NotifyMeNow plugin in your html file.

<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="js/NotifyMeNow.js"></script>

3. Create an empty div element to show the notifications.

<div id="NotifyMeNowContainer"></div>

4. Show a basic notification on page load.

$("#NotifyMeNowContainer").NotifyMeNow("Hello World");

5. Override the timeout parameters.

var notificationTimeout = 10000;   // 10 Seconds (Default Notification hiding time)

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