mdb-ui-kit/docs/4.0/material-design/snackbars.md
2017-12-10 17:57:27 +01:00

58 lines
1.7 KiB
Markdown

---
layout: docs
title: Snackbars
group: material-design
---
Snackbars and toasts can be created using the [SnackbarJS](https://github.com/FezVrasta/snackbarjs) plugin developed by us.
## Contents
* Will be replaced with the ToC, excluding the "Contents" header
{:toc}
## Include in the page
In order to make snackbars work, make sure to include `snackbar.min.js` before `bootstrap-material-design.min.js`.
{% highlight html %}
<script src="{{ site.cdn.jquery }}" integrity="{{ site.cdn.jquery_hash }}" crossorigin="anonymous"></script>
<script src="{{ site.cdn.popper }}" integrity="{{ site.cdn.popper_hash }}" crossorigin="anonymous"></script>
<!-- SnackbarJS plugin -->
<script src="{{ site.cdn.snackbar }}"></script>
<script src="{{ site.cdn.js }}" integrity="{{ site.cdn.js_hash }}" crossorigin="anonymous"></script>
<script>
$('body').bootstrapMaterialDesign();
</script>
{% endhighlight %}
{% callout info %}
**Heads up!** You don't need to include SnackbarJS CSS, it's already bundled in Material Design for Bootstrap.
{% endcallout %}
## Examples
Click on the buttons below to spawn snackbars and toasts:
### Snackbar
{% example html %}
<button type="button" class="btn btn-secondary" data-toggle="snackbar" data-content="Free fried chicken here! <a href='https://example.org' class='btn btn-info'>Check it out</a>" data-html-allowed="true" data-timeout="0">
Snackbar
</button>
{% endexample %}
### Toast
{% example html %}
<button type="button" class="btn btn-secondary" data-toggle="snackbar" data-style="toast" data-content="Fried chicken out of stock.">
Toast
</button>
{% endexample %}
## Usage
The complete documentation of SnackbarJS is available visiting [its official GitHub repository](https://github.com/FezVrasta/snackbarjs).