D
D
Daniel_Defo2019-03-23 18:57:21
Layout
Daniel_Defo, 2019-03-23 18:57:21

How to make slides of different sizes on slick?

5c96575a44a76651117045.png

Answer the question

In order to leave comments, you need to log in

1 answer(s)
L
Localhost, 2019-03-23
@selo

you can make your own class with selectors

:nth-child(2){
  -o-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}
:nth-child(3){
  -o-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question