Create snackbars and toasts with ease.
SnackbarJS is a lightweight and jQuery powered plugin made to work in Bootstrap style, just like the Bootstrap tooltips work.
Using it is as easy as writing:
<span data-toggle=snackbar data-content="This is my awesome snackbar!">Click me</span>
There are some options to customize SnackbarJS look and beahvior:
var options = {
content: "Some text", // text of the snackbar
style: "toast", // add a custom class to your snackbar
timeout: 1000 // time in milliseconds after the snackbar autohides, 0 is disabled
}
$.snackbar(options);
Once you have created a snackbar you can show, hide or toggle it with:
$("#snackbarid").snackbar("show");
$("#snackbarid").snackbar("hide");
$("#snackbarid").snackbar("toggle");
#snackbarid
can be both the button with the data-toggle=snackbar
attribute or the snackbar element.
Call it on a not-existing snackbar will create it before the specificed action.
To see SnackbarJS in action click the buttons below:
Show or hide a snackbar
Show or hide a toast
Create and show a snackbar.
Create and show a toast.