我在响应中垂直滑动条有问题。我无法完全看到最后一个滑块,它在某些设备(例如iphone5、6、7等)上显示了一半滑块。
jQuery('.slick-carousel').slick({
vertical: true,
verticalSwiping: true,
slidesToShow: 2,
slidesToScroll: 1,
infinite: false,
customDots: false,
centerMode: false,
dots: false,
centerPadding: '0px',
responsive: [{
breakpoint: 481,
settings: {
customDots: true
}
}]
});
我想以滚动方式在响应中显示完整的滑块。