平滑滚动:避免使用" display:none;"属性

时间:2016-04-17 10:19:45

标签: jquery css

在我的例子中是否可以避免具有某种css风格的项目" display:none;"使用平滑滚动时?

这是我正在使用的脚本:

jQuery(function($) {

  $('a[href*=\\#]').click(function() 
{
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') 
    || location.hostname == this.hostname) 
{   

  var target = jQuery(this.hash);
  target = target.length ? target : jQuery('[name=' + this.hash.slice(1) +']');
  if (target.length) {
    jQuery('html,body').animate({
      scrollTop: target.offset().top + -10
    }, 1000);
    return false;
  }
}
});
});

0 个答案:

没有答案