私は私のウェブサイトにフクロウカルーセルを使用しようとしています。たとえば、ナビゲーションに「無効」クラスを追加し、cssを使用して無効にすることにより、最初/最後のアイテムに到達した後、ナビゲーションを無効にします。出来ますか?
私のコード
$(document).ready(function() {
var owl = $("#owl-demo");
owl.owlCarousel({
rewindNav : false,
pagination : false,
items : 4
});
// Custom Navigation Events
$(".next").click(function(){
owl.trigger('owl.next');
})
$(".prev").click(function(){
owl.trigger('owl.prev');
})
});
.item { background: #e5e5e5; margin: 10px}
.btn { background: #bd0000; color: #fff; padding: 5px 10px; cursor: pointer}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://owlgraphic.com/owlcarousel/owl-carousel/owl.carousel.js"></script>
<link href="http://owlgraphic.com/owlcarousel/owl-carousel/owl.carousel.css" rel="stylesheet" />
<div id="owl-demo" class="owl-carousel owl-theme">
<div class="item"><h1>1</h1></div>
<div class="item"><h1>2</h1></div>
<div class="item"><h1>3</h1></div>
<div class="item"><h1>4</h1></div>
<div class="item"><h1>5</h1></div>
<div class="item"><h1>6</h1></div>
<div class="item"><h1>7</h1></div>
<div class="item"><h1>8</h1></div>
<div class="item"><h1>9</h1></div>
<div class="item"><h1>10</h1></div>
</div>
<div class="customNavigation">
<a class="btn prev">Previous</a>
<a class="btn next">Next</a>
</div>
Callbak afterActionとカスタムコントロールを使用できます
afterAction: function(){
if ( this.itemsAmount > this.visibleItems.length ) {
$('.next').show();
$('.prev').show();
$('.next').removeClass('disabled');
$('.prev').removeClass('disabled');
if ( this.currentItem == 0 ) {
$('.prev').addClass('disabled');
}
if ( this.currentItem == this.maximumItem ) {
$('.next').addClass('disabled');
}
} else {
$('.next').hide();
$('.prev').hide();
}
}
動作デモを確認してください- http://jsfiddle.net/p3d52z4n/9/
最も簡単なソリューション:
OwlCarousel 2は、最初/最後の要素に到達したときに、disabled
クラスをnav要素に与えます。
そのため、次のようなものが必要になります。
.owl-nav{
.disabled{
display: none;
}
}
スライダーを呼び出した後、ネイティブのナビゲーションボタンを使用して、Owl Carousel 2、私の解決策でも同じ問題が発生しました。
var Elm = '.slider'; //your slider class
function toggleArrows(){
if($(Elm).find(".owl-item").last().hasClass('active') &&
$(Elm).find(".owl-item.active").index() == $(Elm).find(".owl-item").first().index()){
$(Elm).find('.owl-nav .owl-next').addClass("off");
$(Elm).find('.owl-nav .owl-prev').addClass("off");
}
//disable next
else if($(Elm).find(".owl-item").last().hasClass('active')){
$(Elm).find('.owl-nav .owl-next').addClass("off");
$(Elm).find('.owl-nav .owl-prev').removeClass("off");
}
//disable previus
else if($(Elm).find(".owl-item.active").index() == $(Elm).find(".owl-item").first().index()) {
$(Elm).find('.owl-nav .owl-next').removeClass("off");
$(Elm).find('.owl-nav .owl-prev').addClass("off");
}
else{
$(Elm).find('.owl-nav .owl-next,.owl-nav .owl-prev').removeClass("off");
}
}
//turn off buttons if last or first - after change
$(Elm).on('initialized.owl.carousel', function (event) {
toggleArrows();
});
$(Elm).on('translated.owl.carousel', function (event) { toggleArrows(); });
Cssに関しては、無効なボタンに必要なプロパティをクラスに「オフ」にします。
単にコールバックを使用する
loop:false,
navRewind: false
最初または最後のアイテムに到達すると、「無効」クラスがowl-nextおよびowl-prevに追加されることに気付くでしょう。 CSS-の追加
.owl-next.disabled, .owl-prev.disabled {
display: none !important;
}
トリックを行います。
Owl Carousel 2を使用して動作します
$('#owlCarousel').owlCarousel({
loop:true,
loop:false,
responsiveClass:true,
responsive:{
0:{
items:1,
nav:true
},
600:{
items:3,
nav:true
},
1000:{
items:4,
nav:true,
touchDrag:false,
//pullDrag:false,
freeDrag:false
}
},
onTranslated:callBack
});
function callBack(){
if($('.owl-carousel .owl-item').last().hasClass('active')){
$('.owl-next').hide();
$('.owl-prev').show();
console.log('true');
}else if($('.owl-carousel .owl-item').first().hasClass('active')){
$('.owl-prev').hide();
$('.owl-next').show();
console.log('false');
}
}
$('#owlCarousel .owl-prev').hide();
カスタムナビゲーションを使用したOwl Carousel 2の作業
onTranslated: function(event){
if (event.item.index == 0) jQuery("#owlPrev").hide();
else jQuery("#owlPrev").show();
if (event.item.index == (event.item.count - 1)) jQuery("#owlNext").hide();
else jQuery("#owlNext").show();
}
また、次のようなレスポンシブアプローチを使用して、いくつかのコールバックを使用できることにも注意してください。
responsive:{
0:{
items: 1,
slideBy: 1,
onTranslated: function(event){
if (event.item.index == 0) jQuery("#owlPrev").hide();
else jQuery("#owlPrev").show();
if (event.item.index == (event.item.count - 1)) jQuery("#owlNext").hide();
else jQuery("#owlNext").show();
}
},
992:{
items: 2,
slideBy: 2,
onTranslated: function(event){
if (event.item.index === 0) jQuery("#owlPrev").hide();
else jQuery("#owlPrev").show();
if (event.item.index == (event.item.count / 2)) jQuery("#owlNext").hide();
else jQuery("#owlNext").show();
}
}
}
前に述べたように、Owlのコールバックを使用して、[次へ]ボタンを非表示または変更できます。ただし、ユーザーにボタンを使用しないように指示するためにdisabled
クラスを使用する代わりに、実際に非常に簡単に無効にすることができます。
$slider.on('changed.owl.carousel', ev => {
const carousel = ev.currentTarget
$('.owl-next', $el).attr('disabled', carousel.current() === carousel.maximum())
$('.owl-prev', $el).attr('disabled', carousel.current() === carousel.minimum())
})
CSSセレクター[disabled]
を使用して、無効なボタンのスタイルを設定できます。
私は解決策を探していました、私はいくつかのコードを見つけて、それらを組み合わせます。その作品。最初のアイテムが左矢印を非表示にするとき、最後のアイテムが右矢印を非表示にするとき。
.on()イベントへの注意
$('.homeSlider').owlCarousel({
loop: false ,
autoplay: false,
navClass: ['fa fa-chevron-left', 'fa fa-chevron-right'],
navText: ['', ''],
margin: 20,
startPosition: -0,
items: 3,
nav: true,
dots: false,
center: false,
autoWidth: true,
responsive: {
0: {
items: 1
},
600: {
items:2,
margin: 20,
startPosition: 0,
loop: true,
autoWidth: true,
center: false
},
992: {
items: 3
},
1920: {
items: 5
}
}}).on('initialized.owl.carousel changed.owl.carousel refreshed.owl.carousel', function (event) {
//alert("s");
if (!event.namespace) return;
var carousel = event.relatedTarget,
element = event.target,
current = carousel.current();
if(current === carousel.maximum()) $('.homeSlider .fa-chevron-right').hide();
if(current === carousel.minimum()) $('.homeSlider .fa-chevron-left').hide();
});
$('.homeSlider .fa-chevron-left').hide();