Can the Twitter Bootstrap Carousel plugin fade in and out on slide transition

前端 未结 6 1182
时光取名叫无心
时光取名叫无心 2020-11-30 19:36

I have a very basic implementation of the Twitter Bootstrap Carousel plugin on a site that I am working on (http://furnitureroadshow.com/). I was just wondering if anyone h

6条回答
  •  星月不相逢
    2020-11-30 20:02

    If you are using Bootstrap 3.3.x then use this code (you need to add class name carousel-fade to your carousel).

    .carousel-fade .carousel-inner .item {
      -webkit-transition-property: opacity;
              transition-property: opacity;
    }
    .carousel-fade .carousel-inner .item,
    .carousel-fade .carousel-inner .active.left,
    .carousel-fade .carousel-inner .active.right {
      opacity: 0;
    }
    .carousel-fade .carousel-inner .active,
    .carousel-fade .carousel-inner .next.left,
    .carousel-fade .carousel-inner .prev.right {
      opacity: 1;
    }
    .carousel-fade .carousel-inner .next,
    .carousel-fade .carousel-inner .prev,
    .carousel-fade .carousel-inner .active.left,
    .carousel-fade .carousel-inner .active.right {
      left: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-control {
      z-index: 2;
    }
    

提交回复
热议问题