All Projects → alihesari → notice.js

alihesari / notice.js

Licence: MIT license
💯 Javascript notification library

Programming Languages

javascript
184084 projects - #8 most used programming language
SCSS
7915 projects

Projects that are alternatives of or similar to notice.js

Fftoast
A very powerful iOS message notifications and AlertView extensions. It can be easily realized from the top of the screen, the bottom of the screen and the middle of the screen pops up a notification. You can easily customize the pop-up View.
Stars: ✭ 649 (+2496%)
Mutual labels:  alert, notification
Notificationbar
A simple module for iOS that allows you to show notifications strips
Stars: ✭ 40 (+60%)
Mutual labels:  alert, notification
Notie
🔔 a clean and simple notification, input, and selection suite for javascript, with no dependencies
Stars: ✭ 6,170 (+24580%)
Mutual labels:  alert, notification
react-notify
Tiny React's module that shows notifications.
Stars: ✭ 55 (+120%)
Mutual labels:  notification, notify
alert
Cross-platform, isomorphic alert, for Node and browser (previously alert-node)
Stars: ✭ 27 (+8%)
Mutual labels:  alert, notify
Swiftentrykit
SwiftEntryKit is a presentation library for iOS. It can be used to easily display overlays within your iOS apps.
Stars: ✭ 5,706 (+22724%)
Mutual labels:  alert, notification
React Notie
Simple notifications for react
Stars: ✭ 27 (+8%)
Mutual labels:  alert, notification
janitor
Availability monitoring and alerting for IOT devices
Stars: ✭ 55 (+120%)
Mutual labels:  alert, notification
Notiflix
Notiflix is a JavaScript library for client-side non-blocking notifications, popup boxes, loading indicators, and more that makes your web projects much better.
Stars: ✭ 172 (+588%)
Mutual labels:  alert, notification
Vue Toastify
🔥 Simple, extendable, dependency free notification plugin. 🔥
Stars: ✭ 126 (+404%)
Mutual labels:  alert, notification
flasher
A powerful and flexible flash notifications system for PHP
Stars: ✭ 46 (+84%)
Mutual labels:  notification, notify
laravel-exception-notify
Laravel 中异常监控报警通知(Bark、Chanify、钉钉群机器人、Discord、飞书群机器人、邮件、PushDeer、QQ 频道机器人、Server 酱、Slack、Telegram、企业微信群机器人、息知)。
Stars: ✭ 52 (+108%)
Mutual labels:  notification, notify
Gcnotificationview
Simplest notification alert view for iOS
Stars: ✭ 27 (+8%)
Mutual labels:  alert, notification
React Native Dropdownalert
A simple alert to notify users about new chat messages, something went wrong or everything is ok.
Stars: ✭ 1,628 (+6412%)
Mutual labels:  alert, notification
growl-alert
A simple growl like notification system.
Stars: ✭ 14 (-44%)
Mutual labels:  alert, notification
snmp notifier
A webhook to relay Prometheus alerts as SNMP traps, because sometimes, you have to deal with legacy
Stars: ✭ 33 (+32%)
Mutual labels:  alert, notification
spark-alarm
Alerting and monitoring tool for Apache Spark
Stars: ✭ 23 (-8%)
Mutual labels:  alert
Whizzz-The-ChatApp
Whizzz is a real-time, one-to-one Android chat application made using Firebase, a beautiful user interface, and a push-notification feature.
Stars: ✭ 66 (+164%)
Mutual labels:  notification
gotify-push
Chrome Extension for Send Push Notification 🔔 to gotify/server ☁
Stars: ✭ 32 (+28%)
Mutual labels:  notification
amaran-laravel
AmaranJS stylish notification for your laravel application.
Stars: ✭ 24 (-4%)
Mutual labels:  notification

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();
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].