I was trying to change the sliding effect of bootstrap 3 carousel to fade in/out. I followed the instruction given here Can the Twitter Bootstrap Carousel plugin fade in and
Add class ".carousel-fade" in your carousel. css:
.carousel-fade .active.left {
left:0;
opacity:0;
-webkit-transition: opacity 1s; /*time < to $.carousel.interval setup */
-moz-transition: opacity 1s;
-ms-transition: opacity1s;
-o-transition: opacity 1s;
transition: opacity 1s;
z-index:2;
}
.carousel-fade .next {
left:0;
opacity:1;
z-index:1;
}