2013-02-17 61 views
4

如何隱藏在Twitter引導轉盤上加載頁面後的左鍵?如何隱藏在Twitter引導傳送帶頁面加載後的左按鈕?

http://twitter.github.com/bootstrap/javascript.html#carousel

我嘗試(它的工作原理第一個動作後,我需要所有的時間):

$('#myCarousel').on('slid', '', function() { 
    var $this = $(this); 

    $this.children('.carousel-control').show(); 
    if($('.carousel-inner .item:first').hasClass('active')) { 
     $this.children('.left.carousel-control').hide(); 
    } 
    else if($('.carousel-inner .item:last').hasClass('active')) { 
     $this.children('.right.carousel-control').hide(); 
    } 

}); 
+0

您是否找到解決方案? – Steffi 2013-10-11 12:19:17

回答

1

簡單地隱藏頁面加載後左鍵。因爲它總是從第一張幻燈片開始。

$('#myCarousel > .left.carousel-control').hide(); 

或者,在頁面加載後手動觸發slid事件。

$('#myCarousel').on('slid', '', function() { 
    ... 
}).trigger('slid'); 
相關問題