在垂直idangero.us滑动器中滚动以移动

时间:2018-10-31 10:46:12

标签: javascript css swiper

因此,我的移动客户端中的典型垂直滑动器工作得非常好。

一切都按计划进行,除非内容大于屏幕。 由于幻灯片会发生变化,因此用户无法滚动到内容的结尾。

var swiper = new Swiper('.swiper-container', {
direction: 'vertical',
pagination: {
    el: '.swiper-pagination'
},
scrollbar: {
    el: '.swiper-scrollbar'
},
spaceBetween: 20
});

还有我的CSS:

.swiper-container {
width: 100%;
height: 100%;
}
.swiper-slide {
height: auto;
}

我尝试了很多东西,包括: CSS溢出,slidesPerView,touchReleaseOnEdges和带有freeModeSticky的freeMode。

几乎唯一有效的方法是touchReleaseOnEdges,但不能称之为可用。

我基本上需要this加上this

0 个答案:

没有答案