避免加载/自定义jQuery选项卡上的闪烁

时间:2012-05-22 07:29:57

标签: jquery tabs flicker

我正在使用一些jQuery在页面上制作标签。我的问题是,如果你的连接有点不好,那么脚本隐藏的区域会在隐藏之前闪烁并显示。

如果有人可以帮我修改这个脚本以避免这种情况,我会非常感激,看起来像这样:

jQuery(document).ready(function($){

$('ul.tabs').each(function(){
// For each set of tabs, we want to keep track of
// which tab is active and it's associated content
var $active, $content, $links = $(this).find('a');

// Use the first link as the initial active tab
$active = $links.first().addClass('active');
$content = $($active.attr('href'));

// Hide the remaining content
$links.not(':first').each(function () {
    $($(this).attr('href')).hide();
});

  // Bind the click event handler
  $(this).on('click', 'a', function(e){
    // Make the old tab inactive.
    $active.removeClass('active');
    $content.hide();

    // Update the variables with the new link and content
    $active = $(this);
    $content = $($(this).attr('href'));

    // Make the tab active.
    $active.addClass('active');
    $content.show();

    // Prevent the anchor's default click action
    e.preventDefault();
});
});
});

1 个答案:

答案 0 :(得分:1)

.ul.tabs {display:none}

准备就绪

jQuery(document).ready(function($){ $('ul.tabs').show()}