2016-10-07 4 views
0

한 페이지에 여러 개의 올빼미 회전식 메뉴 (버전 2)가 있고 그 중 하나의 자동 재생을 지연시키고 싶습니다. 여기에 내가 작업하고있는 코드가있다.올빼미 회전 목마 2 자동 재생 지연 설정

owldelay.owlCarousel({ 
    loop: true, 
    items: 1, 
    autoplay:true, 
    autoplayTimeout:2000, 
    animateOut: 'fadeOut', 
    mouseDrag: false, 
    startPosition: 1, 
    center: true 
}); 

어떤 도움을 주시면 감사하겠습니다. 고맙습니다.

답변

0

당신은 당신이 stop.owl.autoplayplay.owl.autoplay 이벤트를 트리거 할 수 올빼미 회전 목마 2에서 독립형 초기화

$("#owl-1").owlCarousel({options}); 
$("#owl-2").owlCarousel({options}); 
+0

답변 해 주셔서 감사합니다. owldelay는이 특정 초기화에 사용하는 변수입니다. 지연을 추가하는 옵션은 무엇입니까? – whildkatz

+0

autoPlay 속성을 false로 만듭니다. 그런 다음 setTimeout 함수를 사용하고 속성을 true로 설정하십시오. –

+0

정확히 내가 고민하는 것입니다. – whildkatz

0

각 회전 목마를 초기화해야합니다. owl.carousel.js API events document

var $owl = $(element).owlCarousel(options); 
var autoplayDelay = 2000; 

if (autoplayDelay) { 
    $owl.trigger('stop.owl.autoplay'); 
    setTimeout(function() { 
    $owl.trigger('play.owl.autoplay'); 
    }, autoplayDelay); 
}