toasts.md 13 KB
Newer Older
Mark Otto's avatar
Mark Otto committed
1
2
3
4
5
6
7
8
9
10
---
layout: docs
title: Toasts
description: Push notifications to your visitors with a toast, a lightweight and easily customizable alert message.
group: components
toc: true
---

Toasts are lightweight notifications designed to mimic the push notifications that have been popularized by mobile and desktop operating systems. They're built with flexbox, so they're easy to align and position.

Johann-S's avatar
Johann-S committed
11
12
13
14
15
## Overview

Things to know when using the toast plugin:

- If you're building our JavaScript from source, it [requires `util.js`]({{ site.baseurl }}/docs/{{ site.docs_version }}/getting-started/javascript/#util).
Mark Otto's avatar
Mark Otto committed
16
- Toasts are opt-in for performance reasons, so **you must initialize them yourself**.
17
- **Please note that you are responsible for positioning toasts.**
Mark Otto's avatar
Mark Otto committed
18
- Toasts will automatically hide if you do not specify `autohide: false`.
Johann-S's avatar
Johann-S committed
19

Mark Otto's avatar
Mark Otto committed
20
21
## Examples

Mark Otto's avatar
Mark Otto committed
22
23
24
25
26
### Basic

To encourage extensible and predictable toasts, we recommend a header and body. Toast headers use `display: flex`, allowing easy alignment of content thanks to our margin and flexbox utilities.

Toasts are as flexible as you need and have very little required markup. At a minimum, we require a single element to contain your "toasted" content and strongly encourage a dismiss button.
Mark Otto's avatar
Mark Otto committed
27
28
29

<div class="bg-light">
{% capture example %}
30
<div class="toast" role="alert" aria-live="assertive" aria-atomic="true">
Mark Otto's avatar
Mark Otto committed
31
  <div class="toast-header">
32
    {% include icons/placeholder.svg width="20" height="20" background="#007aff" class="rounded mr-2" text=" " title=" " %}
Mark Otto's avatar
Mark Otto committed
33
34
    <strong class="mr-auto">Bootstrap</strong>
    <small>11 mins ago</small>
35
36
37
    <button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
      <span aria-hidden="true">&times;</span>
    </button>
Mark Otto's avatar
Mark Otto committed
38
39
40
41
42
43
44
45
46
  </div>
  <div class="toast-body">
    Hello, world! This is a toast message.
  </div>
</div>
{% endcapture %}
{% include example.html content=example %}
</div>

Mark Otto's avatar
Mark Otto committed
47
48
49
### Translucent

Toasts are slightly translucent, too, so they blend over whatever they might appear over. For browsers that support the `backdrop-filter` CSS property, we'll also attempt to blur the elements under a toast.
Mark Otto's avatar
Mark Otto committed
50
51
52

<div class="bg-dark">
{% capture example %}
53
<div class="toast" role="alert" aria-live="assertive" aria-atomic="true">
Mark Otto's avatar
Mark Otto committed
54
  <div class="toast-header">
55
    {% include icons/placeholder.svg width="20" height="20" background="#007aff" class="rounded mr-2" text=" " title=" " %}
Mark Otto's avatar
Mark Otto committed
56
57
    <strong class="mr-auto">Bootstrap</strong>
    <small class="text-muted">11 mins ago</small>
58
59
60
    <button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
      <span aria-hidden="true">&times;</span>
    </button>
Mark Otto's avatar
Mark Otto committed
61
62
63
64
65
66
67
68
69
  </div>
  <div class="toast-body">
    Hello, world! This is a toast message.
  </div>
</div>
{% endcapture %}
{% include example.html content=example %}
</div>

Mark Otto's avatar
Mark Otto committed
70
71
72
### Stacking

When you have multiple toasts, we default to vertiaclly stacking them in a readable manner.
Mark Otto's avatar
Mark Otto committed
73
74
75

<div class="bg-light">
{% capture example %}
76
<div class="toast" role="alert" aria-live="assertive" aria-atomic="true">
Mark Otto's avatar
Mark Otto committed
77
  <div class="toast-header">
78
    {% include icons/placeholder.svg width="20" height="20" background="#007aff" class="rounded mr-2" text=" " title=" " %}
Mark Otto's avatar
Mark Otto committed
79
80
    <strong class="mr-auto">Bootstrap</strong>
    <small class="text-muted">just now</small>
Mark Otto's avatar
Mark Otto committed
81
82
83
    <button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
      <span aria-hidden="true">&times;</span>
    </button>
Mark Otto's avatar
Mark Otto committed
84
85
86
87
88
89
  </div>
  <div class="toast-body">
    See? Just like this.
  </div>
</div>

90
<div class="toast" role="alert" aria-live="assertive" aria-atomic="true">
Mark Otto's avatar
Mark Otto committed
91
  <div class="toast-header">
92
    {% include icons/placeholder.svg width="20" height="20" background="#007aff" class="rounded mr-2" text=" " title=" " %}
Mark Otto's avatar
Mark Otto committed
93
94
    <strong class="mr-auto">Bootstrap</strong>
    <small class="text-muted">2 seconds ago</small>
95
96
97
98
99
    <button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
      <span aria-hidden="true">&times;</span>
    </button>
  </div>
  <div class="toast-body">
Mark Otto's avatar
Mark Otto committed
100
    Heads up, toasts will stack automatically
101
102
103
104
105
106
  </div>
</div>
{% endcapture %}
{% include example.html content=example %}
</div>

Mark Otto's avatar
Mark Otto committed
107
108
## Placement

Mark Otto's avatar
Mark Otto committed
109
Place toasts with custom CSS as you need them. The top right is often used for notifications, as is the top middle. If you're only ever going to show one toast at a time, put the positioning styles right on the `.toast`.
Mark Otto's avatar
Mark Otto committed
110
111
112

<div class="bg-dark">
{% capture example %}
Mark Otto's avatar
Mark Otto committed
113
<div aria-live="polite" aria-atomic="true" style="position: relative; min-height: 200px;">
Mark Otto's avatar
Mark Otto committed
114
115
  <div class="toast" style="position: absolute; top: 0; right: 0;">
    <div class="toast-header">
116
      {% include icons/placeholder.svg width="20" height="20" background="#007aff" class="rounded mr-2" text=" " title=" " %}
Mark Otto's avatar
Mark Otto committed
117
118
      <strong class="mr-auto">Bootstrap</strong>
      <small>11 mins ago</small>
Mark Otto's avatar
Mark Otto committed
119
120
121
      <button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
        <span aria-hidden="true">&times;</span>
      </button>
Mark Otto's avatar
Mark Otto committed
122
123
124
125
126
127
128
129
130
131
132
133
134
135
    </div>
    <div class="toast-body">
      Hello, world! This is a toast message.
    </div>
  </div>
</div>
{% endcapture %}
{% include example.html content=example %}
</div>

For systems that generate more notifications, consider using a wrapping element so they can easily stack.

<div class="bg-dark">
{% capture example %}
Mark Otto's avatar
Mark Otto committed
136
<div aria-live="polite" aria-atomic="true" style="position: relative; min-height: 200px;">
Mark Otto's avatar
Mark Otto committed
137
138
139
140
  <!-- Position it -->
  <div style="position: absolute; top: 0; right: 0;">

    <!-- Then put toasts within -->
141
    <div class="toast" role="alert" aria-live="assertive" aria-atomic="true">
Mark Otto's avatar
Mark Otto committed
142
      <div class="toast-header">
143
        {% include icons/placeholder.svg width="20" height="20" background="#007aff" class="rounded mr-2" text=" " title=" " %}
Mark Otto's avatar
Mark Otto committed
144
145
        <strong class="mr-auto">Bootstrap</strong>
        <small class="text-muted">just now</small>
Mark Otto's avatar
Mark Otto committed
146
147
148
        <button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
          <span aria-hidden="true">&times;</span>
        </button>
Mark Otto's avatar
Mark Otto committed
149
150
151
152
153
154
      </div>
      <div class="toast-body">
        See? Just like this.
      </div>
    </div>

155
    <div class="toast" role="alert" aria-live="assertive" aria-atomic="true">
Mark Otto's avatar
Mark Otto committed
156
      <div class="toast-header">
157
        {% include icons/placeholder.svg width="20" height="20" background="#007aff" class="rounded mr-2" text=" " title=" " %}
Mark Otto's avatar
Mark Otto committed
158
159
        <strong class="mr-auto">Bootstrap</strong>
        <small class="text-muted">2 seconds ago</small>
Mark Otto's avatar
Mark Otto committed
160
161
162
        <button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
          <span aria-hidden="true">&times;</span>
        </button>
Mark Otto's avatar
Mark Otto committed
163
164
165
166
167
168
169
170
171
172
173
      </div>
      <div class="toast-body">
        Heads up, toasts will stack automatically
      </div>
    </div>
  </div>
</div>
{% endcapture %}
{% include example.html content=example %}
</div>

Mark Otto's avatar
Mark Otto committed
174
You can also get fancy with flexbox utilities to align toasts horizontally and/or vertically.
Mark Otto's avatar
Mark Otto committed
175
176
177

<div class="bg-dark">
{% capture example html %}
Mark Otto's avatar
Mark Otto committed
178
179
<!-- Flexbox container for aligning the toasts -->
<div aria-live="polite" aria-atomic="true" class="d-flex justify-content-center align-items-center" style="min-height: 200px;">
Mark Otto's avatar
Mark Otto committed
180

Mark Otto's avatar
Mark Otto committed
181
182
183
  <!-- Then put toasts within -->
  <div class="toast" role="alert" aria-live="assertive" aria-atomic="true">
    <div class="toast-header">
184
      {% include icons/placeholder.svg width="20" height="20" background="#007aff" class="rounded mr-2" text=" " title=" " %}
Mark Otto's avatar
Mark Otto committed
185
186
187
188
189
190
191
192
      <strong class="mr-auto">Bootstrap</strong>
      <small>11 mins ago</small>
      <button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
        <span aria-hidden="true">&times;</span>
      </button>
    </div>
    <div class="toast-body">
      Hello, world! This is a toast message.
Mark Otto's avatar
Mark Otto committed
193
194
195
196
197
198
    </div>
  </div>
</div>
{% endcapture %}
{% include example.html content=example %}
</div>
Johann-S's avatar
Johann-S committed
199

Mark Otto's avatar
Mark Otto committed
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
## Accessibility

Toasts are intended to be small interruptions to your visitors or users, so to help those with screen readers and similar assistive technologies, you should wrap your toasts in an [`aria-live` region](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Live_Regions). Changes to live regions (such as injecting/updating a toast component) are automatically announced by screen readers without needing to move the user's focus or otherwise interrupt the user. Additionally, include `aria-atomic="true"` to ensure that the entire toast is always announced as a single (atomic) unit, rather than announcing what was changed (which could lead to problems if you only update part of the toast's content, or if displaying the same toast content at a later point in time). If the information needed is important for the process, e.g. for a list of errors in a form, then use the [alert component]({{ site.baseurl }}/docs/{{ site.docs_version }}/components/alerts/) instead of toast.

Note that the live region needs to be present in the markup *before* the toast is generated or updated. If you dynamically generate both at the same time and inject them into the page, they will generally not be announced by assistive technologies.

You also need to adapt the `role` and `aria-live` level depending on the content. If it's an important message like an error, use `role="alert" aria-live="assertive"`, otherwise use `role="status" aria-live="polite"` attributes.

As the content you're displaying changes, be sure to update the [`delay` timeout](#options) to ensure people have enough time to read the toast.

{% highlight html %}
<div class="toast" role="alert" aria-live="polite" aria-atomic="true" data-delay="10000">
  <div role="alert" aria-live="assertive" aria-atomic="true">...</div>
</div>
{% endhighlight %}

When using `autohide: false`, you must add a close button to allow users to dismiss the toast.

<div class="bg-light">
{% capture example %}
<div role="alert" aria-live="assertive" aria-atomic="true" class="toast" data-autohide="false">
  <div class="toast-header">
222
    {% include icons/placeholder.svg width="20" height="20" background="#007aff" class="rounded mr-2" text=" " title=" " %}
Mark Otto's avatar
Mark Otto committed
223
224
225
226
227
228
229
230
231
232
233
234
235
236
    <strong class="mr-auto">Bootstrap</strong>
    <small>11 mins ago</small>
    <button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
      <span aria-hidden="true">&times;</span>
    </button>
  </div>
  <div class="toast-body">
    Hello, world! This is a toast message.
  </div>
</div>
{% endcapture %}
{% include example.html content=example %}
</div>

Johann-S's avatar
Johann-S committed
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
## JavaScript behavior

### Usage

Initialize toasts via JavaScript:

{% highlight js %}
$('.toast').toast(option)
{% endhighlight %}

### Options

Options can be passed via data attributes or JavaScript. For data attributes, append the option name to `data-`, as in `data-animation=""`.

<table class="table table-bordered table-striped">
  <thead>
    <tr>
      <th style="width: 100px;">Name</th>
      <th style="width: 100px;">Type</th>
      <th style="width: 50px;">Default</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>animation</td>
      <td>boolean</td>
      <td>true</td>
      <td>Apply a CSS fade transition to the toast</td>
    </tr>
    <tr>
      <td>autohide</td>
      <td>boolean</td>
      <td>true</td>
      <td>Auto hide the toast</td>
    </tr>
    <tr>
      <td>delay</td>
275
      <td>number</td>
Johann-S's avatar
Johann-S committed
276
      <td>
277
        <code>500</code>
Johann-S's avatar
Johann-S committed
278
      </td>
279
      <td>Delay hiding the toast (ms)</td>
Johann-S's avatar
Johann-S committed
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
    </tr>
  </tbody>
</table>

### Methods

{% include callout-danger-async-methods.md %}

#### `$().toast(options)`

Attaches a toast handler to an element collection.

#### `.toast('show')`

Reveals an element's toast. **Returns to the caller before the toast has actually been shown** (i.e. before the `shown.bs.toast` event occurs).
You have to manually call this method, instead your toast won't show.

{% highlight js %}$('#element').toast('show'){% endhighlight %}

#### `.toast('hide')`

Hides an element's toast. **Returns to the caller before the toast has actually been hidden** (i.e. before the `hidden.bs.toast` event occurs). You have to manually call this method if you made `autohide` to `false`.

{% highlight js %}$('#element').toast('hide'){% endhighlight %}

#### `.toast('dispose')`

Hides an element's toast. Your toast will remain on the DOM but won't show anymore.

{% highlight js %}$('#element').toast('dispose'){% endhighlight %}

### Events

<table class="table table-bordered table-striped">
  <thead>
    <tr>
      <th style="width: 150px;">Event Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>show.bs.toast</td>
      <td>This event fires immediately when the <code>show</code> instance method is called.</td>
    </tr>
    <tr>
      <td>shown.bs.toast</td>
      <td>This event is fired when the toast has been made visible to the user.</td>
    </tr>
    <tr>
      <td>hide.bs.toast</td>
      <td>This event is fired immediately when the <code>hide</code> instance method has been called.</td>
    </tr>
    <tr>
      <td>hidden.bs.toast</td>
      <td>This event is fired when the toast has finished being hidden from the user.</td>
    </tr>
  </tbody>
</table>

{% highlight js %}
$('#myToast').on('hidden.bs.toast', function () {
  // do something…
})
{% endhighlight %}