adaptiveHeight

更新日: 2019-12-19

スライダの高さを現在のスライドに合わせます。

  • 初期値 : true
  • type : boolean
$('.slider').slick({
  adaptiveHeight: true,
});

デモ

スライド毎にスライダの高さが変わります。 "無効化"ボタンを押すと高さが固定になります。

1

2

スライドの高さが

3

行数によって
変わります。

4

無効化
JavaScript
$(document).ready(function(){
  $('.slider').slick({
    adaptiveHeight: true,
  });
  var adaptiveHeight = true;
  $('.js-setoption').on('click', function() {
    adaptiveHeight = !adaptiveHeight;
    $('.slider').slick('slickSetOption', {
      adaptiveHeight: adaptiveHeight,
    });
    if (adaptiveHeight === true) {
      $(this).text('無効化');
    } else {
      $(this).text('有効化');
    }
  });
});
HTML
<div class="slider">
  <div>
    <p>1</p>
  </div>
  <div>
    <p>2</p>
    <div>スライドの高さが</div>
  </div>
  <div>
    <p>3</p>
    <div>行数によって
      <br>変わります。</div>
  </div>
  <div>
    <p>4</p>
  </div>
</div>
<div class="buttons">
  <div class="button js-setoption">無効化</div>
</div>
CSS
.slick-prev:before,
.slick-next:before {
  color: #000 !important;
}

.slider p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 100px;
  color: #666;
  margin: 10px;
  text-align: center;
  background-color: #e0e0e0;
}

.slider div > div {
  margin-bottom: 20px;
  text-align: center;
}

.buttons {
  display: flex;
  justify-content: center;
}

.buttons .button {
  margin: 8px;
  border: 1px solid #000;
  color: #000;
  padding: 8px;
  text-align: center;
  width: 8em;
  transition: all 300ms ease;
}

.buttons .button:hover {
  cursor: pointer;
  background-color: #000;
  color: #fff;
  transition: all 300ms ease;
}

© 2017 Ken Wheeler Licensed under the MIT license

このコンテンツはKen Wheeler(kenwheeler)によるslickドキュメントを翻訳/改変したものです。