zIndex
更新日: 2019-12-19
スライドのz-index
を設定することができます。 IE9以下の対応に便利です。
- 初期値 :
1000
- type :
int
$('.slider').slick({
zIndex: 1000,
});
デモ
z-index
を1000
にして表示しています。 "1にする"ボタンを押すとz-index
を1
にして表示します。 見た目は変わりません。
1
2
3
1に変更
JavaScript
$(document).ready(function(){
$('.slider').slick({
zIndex: 1000,
fade: true,
});
var zIndex = 1000;
$('.js-setoption').on('click', function() {
if (zIndex === 1000) {
$(this).text('1000に戻す');
zIndex = 1;
} else {
$(this).text('1に変更');
zIndex = 1000;
}
$('.slider').slick('unslick');
$('.slider').slick({
zIndex: zIndex,
fade: true,
});
});
});
HTML
<div class="slider">
<p>1</p>
<p>2</p>
<p>3</p>
</div>
<div class="buttons">
<div class="button js-setoption">1に変更</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ドキュメントを翻訳/改変したものです。