我正在研究一些简单的 jquery 导航选项卡。
动画有效,但是当您单击导航消失的按钮之一时。
我希望导航保留并仅显示内容。
$(".livefeed-tabs-comment a").click(function (e) {
e.preventDefault();
idTab = $(this).attr("href");
$(".livefeed-tabs-comment .active").removeClass('active');
$(this).addClass('active');
$(idTab).siblings().stop().fadeOut(100, function () {
setTimeout(function () {
$(idTab).fadeIn(100);
}, 100)
})
})
演示