Hello, I was able to put the normal Bootstrap 3 carousel as shown in the documentation, however I'm having a hard time putting on the Fade effect, does anyone have a solution to do?
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="img/slider1.png" alt="...">
<div class="carousel-caption">
</div>
</div>
<div class="item">
<img src="img/slider2.jpg" alt="...">
<div class="carousel-caption">
...
</div>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
I'm using version 3. The style settings are the same as the bootstrap.