Alterar item de menu ativo na rolagem da página?

95

Conforme você rola a página para baixo, o item de menu ativo muda. Como isso é feito?

Joe Bobby
fonte

Respostas:

205

É feito vinculando-se ao evento scroll do contêiner (geralmente janela).

Exemplo rápido:

// Cache selectors
var topMenu = $("#top-menu"),
    topMenuHeight = topMenu.outerHeight()+15,
    // All list items
    menuItems = topMenu.find("a"),
    // Anchors corresponding to menu items
    scrollItems = menuItems.map(function(){
      var item = $($(this).attr("href"));
      if (item.length) { return item; }
    });

// Bind to scroll
$(window).scroll(function(){
   // Get container scroll position
   var fromTop = $(this).scrollTop()+topMenuHeight;

   // Get id of current scroll item
   var cur = scrollItems.map(function(){
     if ($(this).offset().top < fromTop)
       return this;
   });
   // Get the id of the current element
   cur = cur[cur.length-1];
   var id = cur && cur.length ? cur[0].id : "";
   // Set/remove active class
   menuItems
     .parent().removeClass("active")
     .end().filter("[href='#"+id+"']").parent().addClass("active");
});​

Veja acima em ação em jsFiddle incluindo animação de rolagem.

mekwall
fonte
2
Se o seu menu tiver uma combinação de IDs na página e páginas regulares, coloque os links de ID na página primeiro, depois mude menuItems = topMenu.find("a"),para menuItems = topMenu.find("a").slice(0,4),, substituindo 4por [seus links na página - 1].
Stephen Saucier
5
Na verdade, usei menuItems = topMenu.find ('a [href ^ = "#"]'), retornando apenas links de âncora. Funciona como um encanto.
Julian K
1
O violino está quebrado. Você poderia consertar isso? Thx
m1crdy
1
@ m1crdy Obrigado pelo aviso. Foi consertado. Parece que algo no jQuery Edge o quebrou. Funciona bem com 2.1.0 :)
mekwall
1
@JoelAzevedo Parece que o Sizzle mudou. Atualizado a resposta e o caso de teste para funcionar com jQuery 2.2.
mekwall
16

Basta verificar meu Código e Sniper e o link de demonstração:

    // Basice Code keep it 
    $(document).ready(function () {
        $(document).on("scroll", onScroll);

        //smoothscroll
        $('a[href^="#"]').on('click', function (e) {
            e.preventDefault();
            $(document).off("scroll");

            $('a').each(function () {
                $(this).removeClass('active');
            })
            $(this).addClass('active');

            var target = this.hash,
                menu = target;
            $target = $(target);
            $('html, body').stop().animate({
                'scrollTop': $target.offset().top+2
            }, 500, 'swing', function () {
                window.location.hash = target;
                $(document).on("scroll", onScroll);
            });
        });
    });

// Use Your Class or ID For Selection 

    function onScroll(event){
        var scrollPos = $(document).scrollTop();
        $('#menu-center a').each(function () {
            var currLink = $(this);
            var refElement = $(currLink.attr("href"));
            if (refElement.position().top <= scrollPos && refElement.position().top + refElement.height() > scrollPos) {
                $('#menu-center ul li a').removeClass("active");
                currLink.addClass("active");
            }
            else{
                currLink.removeClass("active");
            }
        });
    }

demonstração ao vivo

MD Ashik
fonte
3

Apenas para complementar a resposta de @Marcus Ekwall. Fazer assim obterá apenas links de âncora. E você não terá problemas se tiver uma mistura de links de âncora e links regulares.

jQuery(document).ready(function(jQuery) {            
            var topMenu = jQuery("#top-menu"),
                offset = 40,
                topMenuHeight = topMenu.outerHeight()+offset,
                // All list items
                menuItems =  topMenu.find('a[href*="#"]'),
                // Anchors corresponding to menu items
                scrollItems = menuItems.map(function(){
                  var href = jQuery(this).attr("href"),
                  id = href.substring(href.indexOf('#')),
                  item = jQuery(id);
                  //console.log(item)
                  if (item.length) { return item; }
                });

            // so we can get a fancy scroll animation
            menuItems.click(function(e){
              var href = jQuery(this).attr("href"),
                id = href.substring(href.indexOf('#'));
                  offsetTop = href === "#" ? 0 : jQuery(id).offset().top-topMenuHeight+1;
              jQuery('html, body').stop().animate({ 
                  scrollTop: offsetTop
              }, 300);
              e.preventDefault();
            });

            // Bind to scroll
            jQuery(window).scroll(function(){
               // Get container scroll position
               var fromTop = jQuery(this).scrollTop()+topMenuHeight;

               // Get id of current scroll item
               var cur = scrollItems.map(function(){
                 if (jQuery(this).offset().top < fromTop)
                   return this;
               });

               // Get the id of the current element
               cur = cur[cur.length-1];
               var id = cur && cur.length ? cur[0].id : "";               

               menuItems.parent().removeClass("active");
               if(id){
                    menuItems.parent().end().filter("[href*='#"+id+"']").parent().addClass("active");
               }

            })
        })

Basicamente eu substituí

menuItems = topMenu.find("a"),

de

menuItems =  topMenu.find('a[href*="#"]'),

Para combinar todos os links com âncora em algum lugar, e mudar tudo o que era necessário para fazer funcionar com este

Veja em ação no jsfiddle

Pablo SG Pacheco
fonte
Como posso estender isso para um menu vertical, especialmente quando o menu é maior do que a página? pyze.com/product/docs/index.html Quando um usuário rola o conteúdo à direita, eu gostaria de ativar o menu apropriado à esquerda e rolar o menu se necessário para mostrar o menu ativo. Quaisquer dicas são apreciadas.
Dickey Singh
Isso é muito Deus, obrigado. No entanto, eu mudaria o seletor de atributo de * = para ^ =. Se você usar * =, também capturará coisas como google.com/#something, mesmo que seja um link externo. O seletor de atributos é bem explicado aqui: w3schools.com/css/css_attribute_selectors.asp
Jacques
0

Se você deseja que a resposta aceita funcione no JQuery 3, altere o código assim:

var scrollItems = menuItems.map(function () {
    var id = $(this).attr("href");
    try {
        var item = $(id);
      if (item.length) {
        return item;
      }
    } catch {}
  });

Também adicionei um try-catch para evitar que o javascript falhe se não houver nenhum elemento por esse id. Sinta-se à vontade para melhorá-lo ainda mais;)

Tim Gerhard
fonte