Per the docs, this should be enough to run Twitter Bootstrap:

<div class="carousel">
  <div class="carousel-inner">
    <div class="item"></div>
    <div class="item"></div>
    <div class="item"></div>
  </div>
</div>

$('.carousel').carousel()

I also included jquery.transitions plugin so I assumed it would degrade in older browsers.
Unfortunately, the slides don't move at all in Firefox 3.6. Why?

link|improve this question

I am trying to make this work too. Could you please edit the question with your <!-- items included so I can see if I mess it up there? – AnPel Mar 22 at 7:15
@AnPel: Just did that. – Dan Abramov Mar 22 at 9:51
Thank you for your time. Took me a while to set up, this helped me: getkirby.com/blog/bootstrap-carousel. – AnPel Mar 23 at 4:21
feedback

1 Answer

up vote 5 down vote accepted

It looks like you need to add slide class to your carousel for the “simple” version to work:

<div class="carousel slide">

Sample carousel has it, and there is a check in the code:

if (!$.support.transition && this.$element.hasClass('slide')) {
  this.$element.trigger('slide')
  $active.removeClass('active')
  $next.addClass('active')
  this.sliding = false
  this.$element.trigger('slid')
}

Kind of strange they didn't mention it, though.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.