the-muda-organization/notify-bootstrap
Composer 安装命令:
composer require the-muda-organization/notify-bootstrap
包简介
Stylish and modern toast notifications based on Bootstrap 5 and Font Awesome
README 文档
README
❗❗❗ Bootstrap 5 update coming soon!❗❗❗
Notify Bootstrap
Stylish and modern notifications - small jQuery plugin based on Bootstrap and Font Awesome
New version based on Bootstrap 5 coming soon!
Status
View DEMO
Table of contents
- Status
- Quick Start
- What's included
- Bugs and feature requests
- Installation
- How to Use
- Features
- CSS Classes
- Javascript customize
- Versioning
- Changelog
- Team
- Code of Conduct
- Copyright and License
Quick Start
Several options are available:
- Download the latest release.
- Clone the repo:
git clone https://github.com/the-muda-organization/notify-bootstrap.git - Install with Composer:
composer require the-muda-organization/notify-bootstrap
What's included
Within the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this:
There are several dependencies. See below for Installation Guide and How to Use
notify-bootstrap/
│
└─ dist/
│
├── css/
│ ├── notify.css
│ └── notify.min.css
│
└── js/
├── notify.js
└── notify.min.js
Bugs and feature requests
Have a bug or a feature request? Before opening a new issue search for existing and closed issues. If your problem or idea is not addressed yet, open a new issue.
Installation
- Download and copy files to your project
- INSTALL DEPENDENCIES:
- Bootstrap CSS (required)
- Bootstrap JS (popper.js NOT required)
- Font Awesome (recommended - however you can easily customize with your icon set)
- You can easily customize CSS and JS (colors, position, time notification is visible, brand icons etc)
- Add CSS and JS to your project:
<link href="https://example.com/notify-bootstrap/1.x.x/css/notify.min.css" rel="stylesheet"> <script src="https://example.com/notify-bootstrap/1.x.x/js/notify.min.js"></script>
How to Use
Notify is easy to use. Call the function and provide type, title and message:
notify(type, title, message);
Example with jQuery:
$('#button-1').on('click',function(){ notify('bell','Title of the message!','This is a sample message! Lorem ipsum!'); });
Example with javascript:
myElement.addEventListener('click',function(){ notify('shield-check','Title of the message!','This is a sample message! Lorem ipsum!'); });
Notify has a style independend from Bootstrap toast. You can use notify and bootstrap toast component at the same time.
Notify javascript rely 100% on Bootstrap. Check out bootstrap toast component
Features
Position:
set in CSS at Line 13 & 14. Use top:0 or bottom:0 AND left:0 or right:0
Type:
You can add as many types as you need and each type can have custom style.
Type is required. If you leave it empty no icon will be displayed but you will see a placeholder from Font Awesome indicating incorrect icon.
Notify has a few types added as default in several categories:
GENERAL:
- info
- warning
- error
- success
- other
BRANDS:
- facebook
- github
- instagram
- linkedin
- paypal
- skype
- twitter
- wikipedia
- youtube
CUSTOM:
- spinner
FONT AWESOME:
- Any icon can be added. Just use icon name as type: 'times', 'ban', 'user' etc.
- If you want to use other icon type (regular, duotone, light or brand) change line 53 in js file.
To add more types add new case 'newCustomType': in javascript switch with custom icon and set custom CSS as .toast[data-type="newCustomType"]{}
Title:
Anything can be added as title but text is recommended. Title CAN be empty.
Message:
Anything can be added as message but text is recommended. Message as well as title CAN be empty.
Autohide:
Notification can hide when you click the close button or after a period of time.
Notify JS Line 60 - autohide - set true or false
Notify JS Line 61 - custom time to hide notification. Currently it's 5000ms.
Animation:
There is no custom animation. Notify uses Bootstrap to show and hide toasts. Feel free to add your own.
Custom toast:
Notify uses custom CSS so it is possible to use Bootstrap. All custom style is based on [data-type] as type should be declared in each notification.
Custom Features:
Notify has only basic options so you can easily customize all the code. You can add custom timing for each notification, images, buttons with links, anything you want.
In Notify Line 7 just add more event objects and call them with notify(); function!
CSS Classes
| CSS class | Explanation |
|---|---|
.toast-container |
main container for stacking toasts. Set position here. |
.toast |
toast - override from bootstrap |
.toast[data-type] |
toast - style for notify not affecting bootstrap toast |
.toast[data-type] .toast-content |
toast content |
.toast[data-type] .toast-icon svg |
toast svg icon |
.toast[data-type] .toast-body |
toast body - it contains title and message |
.toast[data-type] .toast-body strong |
toast title |
.toast[data-type] .toast-body div |
toast message |
.toast[data-type] .close |
toast close button |
.toast[data-type="XXXXXXX"] |
custom style for a specific notification type (success, error, info etc) |
Javascript customize
- Line 25 - close button svg - now it's Font Awesome
fas fa-timesicon - Lines 29-54 - Icons for different notification type (success, error, info, brands etc). Font Awesome icons are inlined so they are displayed properly and without delay.
- Line 53 - You can change default Font Awesome icon style (solid, regular, light, duotone, brands)
- Line 61 - Set
autohide (true|false)if you want notification to hide after some time - Line 61 - Set your own time how long notification should be visible. Currently it is
5000ms. - Line 67 - It contains toast content template
Versioning
Notify Bootstrap will be maintained under the Semantic Versioning guidelines as much as possible. Releases will be numbered with the following format:
<major>.<minor>.<patch>
Changelog
For last releases see detailed CHANGELOG.
Team
Code of conduct
We will behave ourselves if you behave yourselves. For more details see our CODE_OF_CONDUCT.md.
Copyright and license
Code and documentation copyright 2017-2020 The MUDA Organization.
Code released under the MIT License.
the-muda-organization/notify-bootstrap 适用场景与选型建议
the-muda-organization/notify-bootstrap 是一款 基于 HTML 开发的 Composer 扩展包,目前已累计 685 次下载、GitHub Stars 达 8, 最近一次更新时间为 2019 年 08 月 15 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「jquery」 「css」 「bootstrap」 「notifications」 「notify」 「toast」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 the-muda-organization/notify-bootstrap 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 the-muda-organization/notify-bootstrap 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 the-muda-organization/notify-bootstrap 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A Twig extension to insert css as inline styles with a tag
Caching and compression for Twig assets (JavaScript and CSS).
Yii2 LightBox image galary widget uses Lightbox v2.10.0 by Lokesh Dhakar
Views for the package MedicOneSystems Livewire Datatables with Bootstrap 4
This is a laravel 4 package for the server and client side of datatables at http://datatables.net/
A jQuery augmented PHP library for creating and validating HTML forms
统计信息
- 总下载量: 685
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 8
- 点击次数: 12
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-08-15
