Toast CSS Classes
The Toast component is like an alert box that is only shown for a couple of seconds when something happens (i.e. when the user clicks on a button, submits a form, etc.).
Class | Description | Example |
---|---|---|
.toast | Creates the toast | |
.toast-header | Creates the toast header | |
.toast-body | Creates the toast body |
Activate Via JavaScript
Toasts must be initialized with jQuery: select the specified element and call the
toast()
method.Example
<script>
$(document).ready(function(){
$('.toast').toast('show');
});</script>
Toast Options
Options can be passed via data attributes or JavaScript. For data attributes, append the option name to
data-
, as in data-animation=""
.Name | Type | Default | Description | Try it |
---|---|---|---|---|
animation | boolean | true |
Specifies whether to add a CSS fade transition effect when showing and hiding the toast.
| |
autohide | boolean | true | Specifies whether to hide the toast by default | |
delay | number | 500 | Specifies the number of milliseconds it will take to hide the toast once it is shown. |
Toast Methods
The following table lists all available toast methods.
Method | Description | Try it |
---|---|---|
.toast(options) | Activates the toast with an option. See options above for valid values | |
.toast("show") | Shows the toast | |
.toast("hide") | Hides the toast | |
.toast("dispose") | Hides and destroys the toast |
Toast Events
The following table lists all available toast events.
Event | Description | Try it |
---|---|---|
show.bs.toast | Occurs when the toast is about to be shown | |
shown.bs.toast | Occurs when the toast is fully shown (after CSS transitions have completed) | |
hide.bs.toast | Occurs when the toast is about to be hidden | |
hidden.bs.toast | Occurs when the toast is fully hidden (after CSS transitions have completed) |
Credit: www.w3schools.com
Bootstrap JS Toasts
Reviewed by webmission
on
10:43
Rating:
No comments:
Post a Comment