我在我的网站上全屏使用Twitter Bootstrap旋转木马:Web Site Link
在底部菜单中,单击出现的“建筑和栖息地”箭头在幻灯片中导航。
我的链接是这样的:<a id="projet-citizen" class="" data-interval="5000" data-slide-to="25" href="#myCarousel"> ... </ a>
访问每张幻灯片可以很好地对抗淡入淡出的效果,特别是当我想转到上一张幻灯片时。你有没有遇到过这个问题?我错过了什么吗?
发布于 2013-05-19 07:23:43
Twitter Bootstrap Carousel没有内置的javascript/jQuery转换效果;它们是使用CSS转换完成的。
要处理向后转换,您必须在CSS中设置:
.carousel .active.right {Left: 0, opacity: 0, z-index: 2;}
其他相关问题:Can the Twitter Bootstrap Carousel plugin fade in and out on slide transition
https://stackoverflow.com/questions/16625818
复制相似问题