edgeFriction
更新日: 2019-12-19
非ループのカルーセルにおいて、 端のスライドをスワイプする際の抵抗値を指定します。
- 初期値 :
0.15
- type :
int
$('.slider').slick({
edgeFriction: 0.15,
infinite: false,
});
デモ
端のスライドを左右にスワイプした際の抵抗値を0.15
にしています。 "0.5に変更"ボタンを押すと抵抗値を0.5
に変更します。 0.15
よりも大きく動かすことができます。
1
2
0.5に変更
JavaScript
$(document).ready(function(){
$('.slider').slick({
edgeFriction: 0.15,
infinite: false,
});
var edgeFriction = 0.15;
$('.js-setoption').on('click', function() {
if (edgeFriction === 0.15) {
$(this).text('0.15に戻す');
edgeFriction = 0.5;
} else {
$(this).text('0.5に変更');
edgeFriction = 0.15;
}
$('.slider').slick('slickSetOption', {
edgeFriction: edgeFriction,
});
});
});
HTML
<div class="slider">
<p>1</p>
<p>2</p>
</div>
<div class="buttons">
<div class="button js-setoption">0.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ドキュメントを翻訳/改変したものです。