jquery – 当幻灯片不在原始位置时,idangerous swiper link无法正常工作

前端之家收集整理的这篇文章主要介绍了jquery – 当幻灯片不在原始位置时,idangerous swiper link无法正常工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

使用idangerous swiper,请参阅Slide1让我们去谷歌.如果Slide1位于原始位置(框中的第一个左侧),则谷歌的链接将始终有效.但是,如果我们滑动(或鼠标左右拖放)并且Slide1位于第2或第3位,则点击将不起作用.

http://jsfiddle.net/C8ytu/

Meta charset="UTF-8">
  4040;
}
.blue-slide {
  background: #4390ee;
}
.orange-slide {
  background: #ff8604;
}
.green-slide {
  background: #49a430;
}
.pink-slide {
  background: #973e76;
}
.swiper-slide .title {
  font-style: italic;
  font-size: 42px;
  margin-top: 80px;
  margin-bottom: 0;
  line-height: 45px;
}
.pagination {
  position: absolute;
  z-index: 20;
  left: 10px;
  bottom: 10px;
}
.swiper-pagination-switch {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #222;
  margin-right: 5px;
  opacity: 0.8;
  border: 1px solid #fff;
  cursor: pointer;
}
.swiper-visible-switch {
  background: #aaa;
}
.swiper-active-switch {
  background: #fff;
}
  
最佳答案
您必须在代码中添加loopAdditionalSlides:3并解决您的问题.

见这里JSFiddle

JS:

var mySwiper = new Swiper('.swiper-container',loopAdditionalSlides:3,//<-- This one
    paginationClickable: true,loop: true
});

loopAdditionalSlides:“创建循环后将克隆的幻灯片添加数量

Documentation: Swiper Usage and API

原文链接:https://www.f2er.com/html/426477.html

猜你在找的HTML相关文章