A plugin for Framwork7 to show little black toasts iOS-style
- V1: Yes
- V2: No (Toast already included in F7 v2 core components)
https://www.youtube.com/watch?v=1qCRmpyQCuw&feature=youtu.be
http://www.timo-ernst.net/misc/toastdemo/
<link rel="stylesheet" href="toast.css">
<script src="toast.js"></script>
You can create a new toast with a icon:
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:
var app = new Framework7();
var options = {};
var toast = app.toast('A long long message', '', options);
// 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:
toast.show("message");
You can set the following options:
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
MIT - Do what ever you want ;-)