swipe
更新日: 2019-12-19
スワイプやドラッグした後に発生するイベントです。
- パラメータ :
event
、slick
、direction
$('.slider').on('swipe', function(event, slick, direction){
...
});
デモ
スライドをスワイプした場合にイベントが発生し、その内容を表示します。
1
2
3
JavaScript
$(document).ready(function(){
$('.slider').on('swipe', function(event, slick, direction){
$('.result').text('swipe : ' + direction + '方向にスワイプしました。');
});
$('.slider').slick();
});
HTML
<div class="slider">
<p>1</p>
<p>2</p>
<p>3</p>
</div>
<div class="result"></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;
}
© 2017 Ken Wheeler Licensed under the MIT license
このコンテンツはKen Wheeler(kenwheeler)によるslickドキュメントを翻訳/改変したものです。