Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/n2ref/coreui-notice
CoreUI Notice
https://github.com/n2ref/coreui-notice
Last synced: 3 months ago
JSON representation
CoreUI Notice
- Host: GitHub
- URL: https://github.com/n2ref/coreui-notice
- Owner: n2ref
- License: mit
- Created: 2023-04-10T18:44:25.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-22T15:57:35.000Z (7 months ago)
- Last Synced: 2024-09-26T08:14:41.384Z (4 months ago)
- Language: JavaScript
- Homepage: https://n2ref.github.io/coreui-notice
- Size: 633 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CoreUI Notice
**[DEMO](https://n2ref.github.io/coreui-notice)**
## Install with npm
`$ npm install coreui-notice`## Example
```html
Default
Warning
Danger
Success$('#notice-default').click(function () {
CoreUI.notice.info("Hello, world! This is a toast message.");
});$('#notice-warning').click(function () {
CoreUI.notice.warning("Hello, world! This is a toast message.");
});$('#notice-danger').click(function () {
CoreUI.notice.danger("Hello, world! This is a toast message.");
});$('#notice-success').click(function () {
CoreUI.notice.success("Hello, world! This is a toast message.");
});```
Result
![Notice](https://raw.githubusercontent.com/n2ref/coreui-notice/main/preview.png)