我正在使用以下代码在jquery中创建一个选项卡,当有人点击它时会打开该特定选项卡。因此可以对其进行修改,使其可以按指定的时间间隔旋转制表符。
// Tabs
// When page loads...
$(".tab-content").hide(); //Hide all content
$("ul.sidebar-tabs li:first").addClass("active").show(); //Activate first tab
$(".tab-content:first").show(); //Show first tab content
// On Click Event
$("ul.sidebar-tabs li").click(function() {
$("ul.sidebar-tabs li").removeClass("active"); //Remove any "active" class
$(this).addClass("active"); //Add "active" class to selected tab
$(".tab-content").hide(); //Hide all tab content
var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
$(activeTab).fadeIn(); //Fade in the active ID content
return false;
});
相同的html代码是,
<ul class="sidebar-tabs">
<li><a href="#tab-1">Tab1</a></li>
<li><a href="#tab-2">Tab2</a></li>
</ul><!-- //sidebar-tabs -->
<div class="tab-container">
<div id="tab-1" class="tab-content">
<div>
<div id="tab-2" class="tab-content">
<div>
</div>
答案 0 :(得分:0)
试试这个http://flowplayer.org/tools/tabs/index.html
另一个例子,您可能会开始使用http://www.smartnetzone.com/blog_demos/auto_rotating_tabs/
如果你想修改现有的那个,你可以这样做:
jQuery("#tabs").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 3000);