因此,我的移动客户端中的典型垂直滑动器工作得非常好。
一切都按计划进行,除非内容大于屏幕。 由于幻灯片会发生变化,因此用户无法滚动到内容的结尾。
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,但不能称之为可用。