https://github.com/shenfe/lite-toast
A lightweight toast component for mobile frontend.
https://github.com/shenfe/lite-toast
ui-component
Last synced: 11 months ago
JSON representation
A lightweight toast component for mobile frontend.
- Host: GitHub
- URL: https://github.com/shenfe/lite-toast
- Owner: shenfe
- License: mit
- Created: 2017-08-02T11:49:12.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-12-26T05:12:51.000Z (over 8 years ago)
- Last Synced: 2025-07-16T08:44:04.909Z (11 months ago)
- Topics: ui-component
- Language: JavaScript
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lite-toast
A lightweight toast component for mobile frontend.
## Demo
[Demo](http://shenfe.github.io/repos/lite-toast/demo.html)
## Usage
```js
Toast('Hello!');
Toast('How are
you?', {
cssText: 'border:1px solid #ccc;text-align:center;color:#000;background:rgba(255,255,255,0.5);',
delay: 2000,
callback: function () {
alert('Fine!');
}
});
```
## License
MIT