如何在Bootstrap3 Carousel上通过转换来更改滑动动画淡入/淡出 [英] How can I change the sliding animation to fade in/out with transition on Bootstrap3 Carousel

查看:1336
本文介绍了如何在Bootstrap3 Carousel上通过转换来更改滑动动画淡入/淡出的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图改变bootstrap 3 carousel的滑动效果,淡入/淡出。我按照此处的说明操作可以使用Twitter Bootstrap Carousel插件在幻灯片切换时淡入和淡出

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 out on slide transition

css代码(在链接中表示)

the css code is (said in the link) below

.carousel .item {
    -webkit-transition: opacity 3s; 
    -moz-transition: opacity 3s; 
    -ms-transition: opacity 3s; 
    -o-transition: opacity 3s; 
    transition: opacity 3s;
}
.carousel .active.left {
    left:0;
    opacity:0;
    z-index:2;
}
.carousel .next {
    left:0;
    opacity:1;
    z-index:1;
}

我的示例链接位于此pagragraph的末尾,但问题是前面的按钮不能正常工作,可能是解决方案是完美的bootstrap2,我使用bootstrap3,可以有人帮助我吗?提前感谢您的帮助。我在这里是新的,非常抱歉我的可怜的英语,如果我问一个愚蠢的问题!

My example link is at the end of of this pagragraph, I am making it but problem is the previous button isn't working perfectly, may be the solution is perfect for bootstrap2, I am using bootstrap3, can anybody help me? Advance Thanks for your help. I am new here, very sorry for my poor English and if I asked a stupid question!

https://dl.dropboxusercontent.com/u/35758776/xenxbd/contrastic/index.html#parallux-wrapper-04

推荐答案

尝试此轮播褪色示例。它会告诉你如何改变prev和下一个按钮的不透明度。

Try this carousel fade example. It will show you how to change opacity for prev and next buttons.

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

http://bootply.com/86170

这篇关于如何在Bootstrap3 Carousel上通过转换来更改滑动动画淡入/淡出的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆