1
Hello, I managed to put the Bootstrap 3 Carousel normal equal shows in the documentation, but I’m having difficulty to put the Fade effect, someone has some 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 am using version 3. The style settings is the same as the bootstrap.
Which version of Bootstrap you are using 3 or 4? Take advantage and edit your question by placing the code you already have ready and the css you used.
– hugocsl
I’ve already done the editing by entering the code and I’m using version 3.
– Ismael Menezes