87 lines
2.1 KiB
Markdown
87 lines
2.1 KiB
Markdown
# Toast for Framework7
|
|
|
|
A plugin for Framwork7 to show little black toasts iOS-style
|
|
|
|
## Screenshot
|
|
|
|

|
|
|
|
## Video
|
|
|
|
https://www.youtube.com/watch?v=1qCRmpyQCuw&feature=youtu.be
|
|
|
|
## Live demo
|
|
|
|
http://www.timo-ernst.net/misc/toastdemo/
|
|
|
|
## How to use
|
|
|
|
### 1. Add the script to your project (after Framework7 script!) and also add CSS reference:
|
|
|
|
```html
|
|
<link rel="stylesheet" href="toast.css">
|
|
<script src="toast.js"></script>
|
|
```
|
|
|
|
### 2. Create a new toast
|
|
|
|
You can create a new toast with a icon:
|
|
|
|
```javascript
|
|
var app = new Framework7();
|
|
var options = {};
|
|
var toast = app.toast('Marked star', '<div>☆</div>', options);
|
|
```
|
|
|
|
As first parameter you set the message which gets displayed at the bottom of the toast. As 2nd parameter you have to set the icon. You can use free HTML here so set what ever you want (ASCii, Font-Icon, Images, SVG...). Third is reserved for options.
|
|
|
|
If you just want to show a message, let 2nd parameter empty:
|
|
|
|
```javascript
|
|
var app = new Framework7();
|
|
var options = {};
|
|
var toast = app.toast('A long long message', '', options);
|
|
```
|
|
|
|
### 3. Now you can show or hide the box:
|
|
|
|
```javascript
|
|
// show
|
|
toast.show();
|
|
|
|
// hide
|
|
toast.hide();
|
|
```
|
|
|
|
***Note:*** *In older versions of this plugin these methods were `toast.show(true)` and `toast.show(false)` but these were replaced by `toast.show()` and `toast.hide()` which is a little more convenient. You might have to change this in your code though if you upgrade from an older version.*
|
|
|
|
You can also change what message is displayed **after** initialization:
|
|
|
|
```javascript
|
|
toast.show("message");
|
|
```
|
|
|
|
### 4. Options & Callbacks
|
|
|
|
You can set the following options:
|
|
|
|
```javascript
|
|
var app = new Framework7();
|
|
var options = {
|
|
// Callback gets called when toast is hidden
|
|
onHide: function () {
|
|
console.log('hidden');
|
|
},
|
|
duration: 2000 // Hide toast after 2 seconds
|
|
};
|
|
var toast = app.toast('Marked star', '<div>☆</div>', options);
|
|
```
|
|
|
|
You're done :D
|
|
|
|
Made with <3 by www.timo-ernst.net
|
|
|
|
## License
|
|
|
|
MIT - Do what ever you want ;-)
|