handy-notification

1.2.8 • Public • Published

Handy-Notification

Google+ style notification which comes from the bottom to notify.

Demo

npm version

Quick links

  1. Screenshot
  2. Usage
  3. API
  4. Contribute

Screenshot

alt text

The above screenshot is from React-Instagram-clone-2.0

Usage

  1. First install the package with npm or Yarn.

    # with npm
    npm install handy-notification
    
    # or with Yarn
    yarn add handy-notification
  2. Create a div with class handy-notify.

    <div class='handy-notify'>
        <span></span>
    </div>
  3. And here comes the fun part.

    import Notify from 'handy-notification'
    Notify({
        value: "Hello, how are you?",   // Message to be displayed
        onClick: e => console.log('Clicked!!'),  // Function executed when clicked on the notification bar
        done: () => console.log('I notified you & went back to the bottom!')    // function to be executed when you're notified
    })

Example

npm run example

Run the above command and open http://localhost:7007

API

Notify(options:Object)
options = {
    beforeTop: String,
    afterTop: String,
    value: String,
    selector: jQueryElement,
    onClick: Function,
    done: Function
}
beforeTop:
Initial top position which keeps the notification bar at the bottom to hide it. Default top style is 105%.
afterTop
Top position where it comes from the bottom & stops to notify you. Default top style is 90%.
value
This will be the message.
selector
Selector you just created.
onClick
Function executed when clicked on the notification bar.
done
Function executed when you're notified.

Contribute

Show your support by 🌟 the project!!

Feel free to contribute!!

Thanks for reading!!

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.2.8
    3
    • latest

Version History

Package Sidebar

Install

npm i handy-notification

Weekly Downloads

56

Version

1.2.8

License

ISC

Unpacked Size

5.94 kB

Total Files

6

Last publish

Collaborators

  • takkar