当它达到breakpoint之类的990px时,我在光滑的滑块中面临问题。
它删除了背景并且没有显示任何类型的错误。
iconic

而且我正在使用此javascript进行响应。

jQuery(document).ready(function(){
    jQuery(".home_carousel").slick({
        dots: false,
        autoplay: true,
        infinite: true,
        slidesToShow: 3,
        slidesToScroll: 1,
         responsive: [
            {
              breakpoint: 990,
              settings: {
              slidesToShow: 2
              }
            },
            {
              breakpoint: 668,
              settings: {
             arrows: false,
             centerMode: false,
             slidesToShow: 1
              }
            }
        ]
    });
});

最佳答案

在4692行上删除此CSS(style.css)
看到所有媒体设备中的滑块之后

@media (max-width: 570px)
style.css?ver=2013-07-18:4692
.home .slider_div {
    /* display: none; */
}

09-18 22:19