无法使用Owl Carousel 2向上/向下滚动页面

时间:2017-05-25 17:55:11

标签: carousel owl-carousel

我无法在旋转木马上开始拉链时在手机上滚动页面。因此,如果轮播在移动设备上占据所有可见空间 - 上/下到页面会变得有点棘手......

如何禁用滚动的这种“拦截”?

2 个答案:

答案 0 :(得分:2)

将此CSS添加到您的CSS / SASS文件中,这应该有效,它对我有用。

.owl-carousel .owl-stage, .owl-carousel.owl-drag .owl-item {
-ms-touch-action: auto;
    touch-action: auto;

}

答案 1 :(得分:1)

touch-action: auto;对我不起作用,我使用touch-action:pan-y;,它有效

添加此CSS:

.owl-carousel .owl-stage, .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y !important;
    touch-action: pan-y !important;
}