如何在桌面视图中同时使用引导程序幻灯片图像在移动视图中如何停止?

时间:2019-06-10 10:03:21

标签: bootstrap-4

在我的轮播幻灯片中,有4张图片幻灯片。但我不希望在移动视图中使用轮播,而只希望在移动视图中使用单个图像。

css更改

.carousel-inner .item.active {visibility:hidden;}

1 个答案:

答案 0 :(得分:1)

您可以使用OwlCarousel2的responsive option

例如:

$('.owl-carousel').owlCarousel({
    loop: true,
    responsive:{
        0:{
            touchDrag: false, // turn off for mobile
            nav: false
        },
        // breakpoint from 480 up
        480:{
            touchDrag: true, // turn on for 480 up devices
            nav: true
        }
    }
})