0

这些 if 语句总是让我头晕目眩。如果有一个带有标题的页面,并且在标记上方有一个隐藏的标题。

<div id="headerfloat" style="display:none;">
    <p>Floated header</p>
</div>
<div id="header">
    <p>Header</p>
</div>

这个想法是,每当页面向下滚动超过 225px 时,#headerfloat应该出现,而当 topScroll 小于 225px 时消失。我设法用 javascript 和 jQuery 让它工作,但是当我在 iPhone 上测试它时,它非常缓慢。而且我很确定这是因为代码在每个滚动事件中运行。即使#headerfloat是可见的,代码仍然会执行。尽管那时不必如此。

所以,我需要确保代码只在需要时运行一次。我的第一个想法是添加和删除类.open.closed#headerfloat. 并在滚动事件期间运行 if 语句。但这是最有效的方法吗?

我到目前为止,丑陋的片段:

jQuery(window).scroll(function () {
    var headerfloat = $("#header_float");
    var top = jQuery(window).scrollTop();
    if (top > 225) // height of float header
    {
        if (!$(headerfloat).hasClass("closed")) {
            $(headerfloat).addClass("boxshadow", "", 100, "easeInOutQuad").slideDown().addClass("open").removeClass("closed");
        }
    } else {
        $(headerfloat).removeClass("boxshadow", "", 100, "easeInOutQuad").removeClass("closed").slideUp();
    }
});

编辑:所以在 laconbass 的精彩回应之后,这是我最终得到的代码:

var mainHeader = $('#header')
          , top_limit = mainHeader.outerHeight()
          , $window = $(window)
        ;

        var header_float = $('#header_float')

        bindEvent();

        function bindEvent() {
            $window.scroll( scrollEvent );
        }

        function scrollEvent() {
            var top = $window.scrollTop();
            // avoid any logic if nothing must be done
            if ( top < top_limit && !header_float.is(':visible')
                || top > top_limit && header_float.is(':visible')
            ) return;
            // unbind the scroll event to avoid its execution
            // until slide animation is complete
            $window.unbind( 'scroll' );
            // show/hide the header
            if ( top > top_limit ) {
                header_float.slideDown( 400, bindEvent );
            } else {
                header_float.slideUp( 400, bindEvent );
            }
        };
4

2 回答 2

2

你开始的片段看起来有点难看。

我在 jsfiddle 上做了一个供您参考和参考

我假设如下:

  • fixed当页面向下滚动(又名fixed header)时,您需要一个定位的标题。
  • fixed headed是页面主标题的克隆,具有类fixed.
  • fixed header当页面向下滚动超过页眉高度时显示。
  • fixed header当页面向上滚动到足以显示主页标题时隐藏。

性能提示:

  • 缓存 jQuery 对象以避免每次执行事件处理程序时都进行新查询。
  • 在显示/隐藏动画之前取消绑定事件处理程序,之后重新绑定。
  • 在事件处理程序上,尽快返回以避免不必要的逻辑。请记住,在执行 JavaScript 时,浏览器呈现过程被阻止。
var mainHeader = $('header')
  , header = mainHeader.clone().addClass('fixed').appendTo('body')
  , top_limit = header.outerHeight()
;

bindEvents();

function bindEvents() {
    $(window).scroll( scrollEvent );
}

function scrollEvent() {
    var top = $(window).scrollTop();
    // avoid any logic if nothing must be done
    if ( top < top_limit && !header.is(':visible')
        || top > top_limit && header.is(':visible')
    ) return;
    // unbind the scroll event to avoid its execution
    // until slide animation is complete
    $(window).unbind( 'scroll' );
    // show/hide the header
    if ( top > top_limit ) {
        header.slideDown( 400, bindEvents );
    } else {
        header.slideUp( 400, bindEvents );
    }
};
<header>
    <h1>Awesome header</h1>
</header>
<div>
    <!-- the page content -->
</div>
/* the real code needed */
header.fixed {
    display: none;
    position: fixed;
    top: 0;
}
于 2013-06-19T10:34:14.417 回答
0

两种方式:

1,在滚动时,如果你做了你想要的,删除滚动事件。

2、var一个变量,默认为false,滚动时,如果变量为false,做你想做的,并将变量设置为true;如果变量已经为真,什么也不做(或其他你想要的)

于 2013-06-19T09:23:54.380 回答