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();
}
});
您是否找到解決方案? – Steffi 2013-10-11 12:19:17