我想自動播放我的標籤。自動播放標籤
請
http://jsfiddle.net/w3father/KQN3z/
$('#tabs > a').click(function() {
var tab = $('.tab_' + $(this).attr('tab'));
if (tab.length)
{
// Hide active tab & selected style:
$('.tab_active').removeClass('tab_active');
$('#tabs .active').removeClass('active');
// Show clicked tab content
tab.addClass('tab_active');
$(this).addClass('active');
tab.show("slide", { direction: "down" }, 1000);
$(this).show("puff", {}, 10);
}
});
嗨夥計我有自己的想法http://jsfiddle.net/loganphp/4Z7pe.please做得好它有一些自動播放和用戶點擊的問題。你能幫我嗎?/ – w3father 2011-04-20 10:13:55