Slick carousel - force slides to have the same height

前端 未结 8 1986
刺人心
刺人心 2021-02-01 01:21

Im having trouble with the Slick carousel JS plugin with multiple slidesToShow which have different heights.

I need the Slides to have the same

8条回答
  •  独厮守ぢ
    2021-02-01 01:50

    For future searches:

    You can simply use:

    $('.slick').slick({ 
          /* your config */ 
     }).on('setPosition', function (event, slick) {
          slick.$slides.css('height', slick.$slideTrack.height() + 'px');
     });
    

提交回复
热议问题