Waypoints - Sticky Header Navigation. Links Are Highlighted Upon Scrolling Down But Not Scrolling Up

时光毁灭记忆、已成空白 提交于 2019-12-24 07:58:20

问题


I have a site template that I am working on that can be seen here:

http://www.procardetail.co.uk/

As you can see I have Waypoints in action with a sticky header.

Everything works fine when I am scrolling down the page and the navigation links highlight as expected as they encounter the anchors on the page.

However when scrolling up, the functionality of highlighting the links does not work.

The javascript I am using looks like this:

$(function() {

// Do our DOM lookups beforehand
var nav_container = $("#navs");
var nav = $("nav");

var top_spacing = 15;
var waypoint_offset = 50;

nav_container.waypoint({
    handler: function(event, direction) {

        if (direction == 'down') {

            nav_container.css({ 'height':nav.outerHeight() });      
            nav.stop().addClass("sticky").css("top",-nav.outerHeight()).animate({"top":top_spacing});

        } else {

            nav_container.css({ 'height':'auto' });
            nav.stop().removeClass("sticky").css("top",nav.outerHeight()+waypoint_offset).animate({"top":""});

        }

    },
    offset: function() {
        return -nav.outerHeight()-waypoint_offset;
    }
});

var sections = $("section");
var navigation_links = $("nav a");

sections.waypoint({
    handler: function(event, direction) {

        var active_section;
        active_section = $(this);
        if (direction === "up") active_section = active_section.prev();

        var active_link = $('nav a[href="#' + active_section.attr("id") + '"]');
        navigation_links.removeClass("selected");
        active_link.addClass("selected");

    },
    offset: '25%'
})


navigation_links.click( function(event) {

    $.scrollTo(
        $(this).attr("href"),
        {
            duration: 100,
            offset: { 'left':0, 'top':-0.15*$(window).height() }
        }
    );
});

});

Is anyone able to shed some light on why this is happening?

Thanks for your time and help in advance.

来源:https://stackoverflow.com/questions/9998175/waypoints-sticky-header-navigation-links-are-highlighted-upon-scrolling-down

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!