carousel.md 7.96 KB
Newer Older
Mark Otto's avatar
Mark Otto committed
1
2
3
4
5
---
layout: page
title: Carousel
---

Mark Otto's avatar
Mark Otto committed
6
A slideshow component for cycling through elements—images or slides of text—like a carousel. **Nested carousels are not supported.**
Mark Otto's avatar
Mark Otto committed
7

Mark Otto's avatar
Mark Otto committed
8
## Example
Mark Otto's avatar
Mark Otto committed
9
10

{% example html %}
Mark Otto's avatar
Mark Otto committed
11
12
13
14
15
16
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
  <ol class="carousel-indicators">
    <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
    <li data-target="#carousel-example-generic" data-slide-to="1"></li>
    <li data-target="#carousel-example-generic" data-slide-to="2"></li>
  </ol>
17
  <div class="carousel-inner" role="listbox">
Mark Otto's avatar
Mark Otto committed
18
    <div class="item active">
Mark Otto's avatar
Mark Otto committed
19
      <img data-src="holder.js/900x500/auto/#777:#555/text:First slide" alt="First slide">
Mark Otto's avatar
Mark Otto committed
20
    </div>
21
    <div class="item">
Mark Otto's avatar
Mark Otto committed
22
23
24
25
      <img data-src="holder.js/900x500/auto/#666:#444/text:Second slide" alt="Second slide">
    </div>
    <div class="item">
      <img data-src="holder.js/900x500/auto/#555:#333/text:Third slide" alt="Third slide">
26
    </div>
Mark Otto's avatar
Mark Otto committed
27
  </div>
28
  <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
Mark Otto's avatar
Mark Otto committed
29
    <span class="glyphicon glyphicon-chevron-left"></span>
30
    <span class="sr-only">Previous</span>
Mark Otto's avatar
Mark Otto committed
31
  </a>
32
  <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
Mark Otto's avatar
Mark Otto committed
33
    <span class="glyphicon glyphicon-chevron-right"></span>
34
    <span class="sr-only">Next</span>
Mark Otto's avatar
Mark Otto committed
35
36
  </a>
</div>
Mark Otto's avatar
Mark Otto committed
37
{% endexample %}
Mark Otto's avatar
Mark Otto committed
38

Mark Otto's avatar
Mark Otto committed
39
40
41
42
<div class="bs-callout bs-callout-warning" id="callout-carousel-transitions">
  <h4>Transition animations not supported in Internet Explorer 8 &amp; 9</h4>
  <p>Bootstrap exclusively uses CSS3 for its animations, but Internet Explorer 8 &amp; 9 don't support the necessary CSS properties. Thus, there are no slide transition animations when using these browsers. We have intentionally decided not to include jQuery-based fallbacks for the transitions.</p>
</div>
Mark Otto's avatar
Mark Otto committed
43

Mark Otto's avatar
Mark Otto committed
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
### Optional captions

Add captions to your slides easily with the `.carousel-caption` element within any `.item`. Place just about any optional HTML within there and it will be automatically aligned and formatted.

<div class="bs-example">
  <div id="carousel-example-captions" class="carousel slide" data-ride="carousel">
    <ol class="carousel-indicators">
      <li data-target="#carousel-example-captions" data-slide-to="0" class="active"></li>
      <li data-target="#carousel-example-captions" data-slide-to="1"></li>
      <li data-target="#carousel-example-captions" data-slide-to="2"></li>
    </ol>
    <div class="carousel-inner" role="listbox">
      <div class="item active">
        <img data-src="holder.js/900x500/auto/#777:#777" alt="First slide image">
        <div class="carousel-caption">
          <h3>First slide label</h3>
          <p>Nulla vitae elit libero, a pharetra augue mollis interdum.</p>
Mark Otto's avatar
Mark Otto committed
61
        </div>
Mark Otto's avatar
Mark Otto committed
62
63
64
65
66
67
      </div>
      <div class="item">
        <img data-src="holder.js/900x500/auto/#666:#666" alt="Second slide image">
        <div class="carousel-caption">
          <h3>Second slide label</h3>
          <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
Mark Otto's avatar
Mark Otto committed
68
        </div>
Mark Otto's avatar
Mark Otto committed
69
70
71
72
73
74
      </div>
      <div class="item">
        <img data-src="holder.js/900x500/auto/#555:#5555" alt="Third slide image">
        <div class="carousel-caption">
          <h3>Third slide label</h3>
          <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur.</p>
Mark Otto's avatar
Mark Otto committed
75
76
77
        </div>
      </div>
    </div>
Mark Otto's avatar
Mark Otto committed
78
79
80
81
82
83
84
85
86
87
88
    <a class="left carousel-control" href="#carousel-example-captions" role="button" data-slide="prev">
      <span class="glyphicon glyphicon-chevron-left"></span>
      <span class="sr-only">Previous</span>
    </a>
    <a class="right carousel-control" href="#carousel-example-captions" role="button" data-slide="next">
      <span class="glyphicon glyphicon-chevron-right"></span>
      <span class="sr-only">Next</span>
    </a>
  </div>
</div>

Mark Otto's avatar
Mark Otto committed
89
{% highlight html %}
90
<div class="item">
Mark Otto's avatar
Mark Otto committed
91
92
93
94
95
96
97
98
  <img src="..." alt="...">
  <div class="carousel-caption">
    <h3>...</h3>
    <p>...</p>
  </div>
</div>
{% endhighlight %}

Mark Otto's avatar
Mark Otto committed
99
100
101
102
103
104
105
106
<div class="bs-callout bs-callout-danger">
  <h4>Accessibility issue</h4>
  <p>The carousel component is generally not compliant with accessibility standards. If you need to be compliant, please consider other options for presenting your content.</p>
</div>

## Usage

### Multiple carousels</h3>
Mark Otto's avatar
Mark Otto committed
107

Mark Otto's avatar
Mark Otto committed
108
Carousels require the use of an `id` on the outermost container (the `.carousel`) for carousel controls to function properly. When adding multiple carousels, or when changing a carousel's `id`, be sure to update the relevant controls.
Mark Otto's avatar
Mark Otto committed
109

Mark Otto's avatar
Mark Otto committed
110
### Via data attributes
Mark Otto's avatar
Mark Otto committed
111

Mark Otto's avatar
Mark Otto committed
112
113
114
115
116
117
118
Use data attributes to easily control the position of the carousel. `data-slide` accepts the keywords `prev` or `next`, which alters the slide position relative to its current position. Alternatively, use `data-slide-to` to pass a raw slide index to the carousel `data-slide-to="2"`, which shifts the slide position to a particular index beginning with `0`.

The `data-ride="carousel"` attribute is used to mark a carousel as animating starting at page load. **It cannot be used in combination with (redundant and unnecessary) explicit JavaScript initialization of the same carousel.**

### Via JavaScript

Call carousel manually with:
Mark Otto's avatar
Mark Otto committed
119
120
121
122
123

{% highlight js %}
$('.carousel').carousel()
{% endhighlight %}

Mark Otto's avatar
Mark Otto committed
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
### Options

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

<div class="table-responsive">
  <table class="table table-bordered table-striped">
    <thead>
     <tr>
       <th style="width: 100px;">Name</th>
       <th style="width: 50px;">type</th>
       <th style="width: 50px;">default</th>
       <th>description</th>
     </tr>
    </thead>
    <tbody>
     <tr>
       <td>interval</td>
       <td>number</td>
       <td>5000</td>
       <td>The amount of time to delay between automatically cycling an item. If false, carousel will not automatically cycle.</td>
     </tr>
     <tr>
       <td>pause</td>
       <td>string</td>
       <td>"hover"</td>
       <td>Pauses the cycling of the carousel on mouseenter and resumes the cycling of the carousel on mouseleave.</td>
     </tr>
     <tr>
       <td>wrap</td>
       <td>boolean</td>
       <td>true</td>
       <td>Whether the carousel should cycle continuously or have hard stops.</td>
     </tr>
Mark Otto's avatar
Mark Otto committed
157
158
159
160
161
162
     <tr>
       <td>keyboard</td>
       <td>boolean</td>
       <td>true</td>
       <td>Whether the carousel should react to keyboard events.</td>
     </tr>
Mark Otto's avatar
Mark Otto committed
163
164
165
166
167
168
169
170
171
172
    </tbody>
  </table>
</div>

### Methods

#### .carousel(options)

Initializes the carousel with an optional options `object` and starts cycling through items.

Mark Otto's avatar
Mark Otto committed
173
174
175
176
177
178
{% highlight js %}
$('.carousel').carousel({
  interval: 2000
})
{% endhighlight %}

Mark Otto's avatar
Mark Otto committed
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
#### .carousel('cycle')

Cycles through the carousel items from left to right.

#### .carousel('pause')

Stops the carousel from cycling through items.

#### .carousel(number)

Cycles the carousel to a particular frame (0 based, similar to an array).

#### .carousel('prev')

Cycles to the previous item.

#### .carousel('next')

Cycles to the next item.

### Events

Bootstrap's carousel class exposes two events for hooking into carousel functionality. Both events have the following additional properties:

- `direction`: The direction in which the carousel is sliding (either `"left"` or `"right"`).
- `relatedTarget`: The DOM element that is being slid into place as the active item.


<div class="table-responsive">
  <table class="table table-bordered table-striped">
    <thead>
     <tr>
       <th style="width: 150px;">Event Type</th>
       <th>Description</th>
     </tr>
    </thead>
    <tbody>
     <tr>
       <td>slide.bs.carousel</td>
       <td>This event fires immediately when the <code>slide</code> instance method is invoked.</td>
     </tr>
     <tr>
       <td>slid.bs.carousel</td>
       <td>This event is fired when the carousel has completed its slide transition.</td>
     </tr>
    </tbody>
  </table>
</div>

Mark Otto's avatar
Mark Otto committed
228
229
230
231
232
{% highlight js %}
$('#myCarousel').on('slide.bs.carousel', function () {
  // do something…
})
{% endhighlight %}