Questions tagged «carousel»



13
Bootstrap Carousel图片无法正确对齐
请看下面的图片,我们正在使用引导轮播来旋转图片。但是,当窗口宽度较大时,图像无法与边框正确对齐。 但是,无论窗口的宽度如何,引导程序提供的轮播示例始终可以正常工作。遵循代码。 有人可以解释为什么轮播的行为有所不同吗?这与图像大小有关还是缺少一些引导程序配置? <section id="carousel"> <div class="hero-unit span6 columns"> <h2>Welcome to TACT !</h2> <div id="myCarousel" class="carousel slide" > <!-- Carousel items --> <div class="carousel-inner"> <div class="item active" > <img alt="" src="/eboxapps/img/3pp-1.png"> <div class="carousel-caption"> <h4>1. Need a 3rd party jar?</h4> </div> </div> <div class="item"> <img alt="" src="/eboxapps/img/3pp-2.png"> <div class="carousel-caption"> <h4>2. Create …

10
如何使Bootstrap传送带滑块使用移动的向左/向右滑动
演示JSSFIDDLE <div class="col-md-4"> <!--Carousel--> <div id="sidebar-carousel-1" class="carousel slide" data-ride="carousel"> <ol class="carousel-indicators grey"> <li data-target="#sidebar-carousel-1" data-slide-to="0" class="active"></li> <li data-target="#sidebar-carousel-1" data-slide-to="1"></li> <li data-target="#sidebar-carousel-1" data-slide-to="2"></li> </ol> <div class="carousel-inner"> <div class="item active"> <a href="" data-lightbox="image-1" title=""> <img src="http://shrani.si/f/3D/13b/1rt3lPab/2/img1.jpg" alt="..."> </a> </div> <div class="item"> <a href="" data-lightbox="image-1" title=""> <img src="http://shrani.si/f/S/jE/UcTuhZ6/1/img2.jpg" alt="..."> </a> </div> <div class="item"> …

6
Twitter Bootstrap Carousel插件能否在幻灯片过渡时淡入和淡出
在我正在工作的网站(http://furnitureroadshow.com/)上,我有一个Twitter Bootstrap Carousel插件的非常基本的实现。我只是想知道是否有人扩展了Carousel插件,以便它在幻灯片过渡时渐入渐出? 我在github.com(https://github.com/twitter/bootstrap/issues/2050)上发现了此问题#2050,这似乎暗示着这是不可能的。只是想看看它是否可能或已经完成。

1
使用Swiper 5模拟3D滚轮的自定义效果
我需要用12个项目构建一个轮播,以模拟无限旋转的3D车轮。为了清楚起见,我需要精确地创建这种效果: https://codepen.io/SitePoint/pen/yXWXaw(在此处找到) 但具有以下新增功能(尤其是在台式机和移动设备上): 幻灯片必须逐步滑动,也就是说,幻灯片应在滑动时移动(就像Swiper一样)。 快速滑动即可滑动许多幻灯片(如Swiper所做的那样 freeScroll)。 然后,当车轮停止旋转时,它会卡扣到前滑片上(就像Swiper使用freeModeSticky和一样 centeredSlides),它是用户选择的滑片。 每次幻灯片更改(例如slideChanged)时,我都需要回调(就像Swiper一样)。 由于所有这些原因,我认为Swiper 5.3.0是一个很好的起点。 我尝试了各种解决方法,更好的方法是使用此设置,但是这loop: true是一种糟糕的解决方法,并且会导致问题(请查看评论): var swiper = new Swiper(el_class, { slidesPerView: 1.5, spaceBetween: 25, centeredSlides: true, grabCursor: true, speed: 550, loop: true, // <== repeat infinitely the 12 items. with fast scroll at the end of a cycle it waits a …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.