touchThreshold

更新日: 2019-12-19

スワイプでスライドを移動させるために必要な距離を指定します。
スライドを移動させるには、(1/touchThreshold)*スライダ幅をスワイプする必要があります。

  • 初期値 : 5
  • type : int
$('.slider').slick({
  touchThreshold: 5,
});

デモ

スワイプでスライドを移動する際に、スライド幅の1/5以上スワイプするとスライドが切り替わります。 "1.25に変更"ボタンを押すと4/5以上スワイプしないと切り替わらないように変更します。

1

2

3

1.25に変更
JavaScript
$(document).ready(function(){
  $('.slider').slick({
    touchThreshold: 5,
  });
  var touchThreshold = 5;
  $('.js-setoption').on('click', function() {
    if (touchThreshold === 5) {
      $(this).text('5に戻す');
      touchThreshold = 1.25;
    } else {
      $(this).text('1.25に変更');
      touchThreshold = 5;
    }
    $('.slider').slick('slickSetOption', {
      touchThreshold: touchThreshold,
    });
  });
});
HTML
<div class="slider">
  <p>1</p>
  <p>2</p>
  <p>3</p>
</div>
<div class="buttons">
  <div class="button js-setoption">1.5に変更</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;
}

.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ドキュメントを翻訳/改変したものです。