使用 HTML & jQuery 创建相同类型的导航

Creating the same kind of navigation with HTML & jQuery

大家好 Whosebug,

我希望构建与网站 Pagekit.com 上使用的导航相同的导航。滚动一段时间后必须弹出导航。任何人都知道 jQuery 插件或任何其他可以帮我解决问题的东西吗?我做了一些谷歌搜索,但找不到任何有用的东西。

此致, 迪伦

关键是:scrollPosition.

你想要达到的结果有点太多了,无法解释你必须采取的每一个行动。以下是您正在寻找的示例:FadeIn on scroll

$(document).ready(function() {

    /* Every time the window is scrolled ... */
    $(window).scroll( function(){

        /* Check the location of each desired element */
        $('.hideme').each( function(i){

            var bottom_of_object = $(this).position().top + $(this).outerHeight();
            var bottom_of_window = $(window).scrollTop() + $(window).height();

            /* If the object is completely visible in the window, fade it it */
            if( bottom_of_window > bottom_of_object ){

                $(this).animate({'opacity':'1'},500);

            }

        }); 

    });

});