K
K
Konstantin Teploukhov2018-04-20 21:28:15
css
Konstantin Teploukhov, 2018-04-20 21:28:15

How to make a slider (slick) adaptive?

Good afternoon, I used to always use bootstrap, so there were no particular problems with adaptability ... but I decided to try to make something at least somehow adaptively without it ... and even in a stupor. But in a stupor because of the slider.
Tell me how? Preferably chewed, as I've been fighting for 2-3 hours ...
website

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Alexander, 2018-04-20
@pi4yyy

Actually something similar to media expressions only for the slider. Here are all the settings.

$('.responsive').slick({
  dots: true,
  infinite: false,
  speed: 300,
  slidesToShow: 4,
  slidesToScroll: 4,
  responsive: [
    {
      breakpoint: 1024,
      settings: {
        slidesToShow: 3,
        slidesToScroll: 3,
        infinite: true,
        dots: true
      }
    },
    {
      breakpoint: 600,
      settings: {
        slidesToShow: 2,
        slidesToScroll: 2
      }
    },
    {
      breakpoint: 480,
      settings: {
        slidesToShow: 1,
        slidesToScroll: 1
      }
    }
    // You can unslick at a given breakpoint now by adding:
    // settings: "unslick"
    // instead of a settings object
  ]
});

K
Konstantin Teploukhov, 2018-04-21
@blood-moon

Krch decided, xs why, but he prescribed display:flex for the slider wrapper. That's all to hell and went, returned to the block and everything became type top;)

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question