0

我有一个带有固定位置顶级导航菜单的 HTML 页面,其中包含指向不同部分的链接。当用户到达相应部分时(通过单击链接本身或向下滚动到该部分),有没有办法改变我的链接的颜色?

这就是我的 HTML 的样子,基本上:

<div id="topNav">
     <ul>
          <li><a href="#contact">Contact</a></li>
          <li><a href="#web_design">Web Design</a></li>
          <li><a href="#home">Home</a></li>
     </ul>
</div>

<div id="home">
     <img src="images/dog.jpg" class="bg" />
</div>
<div id="web_design">
     <img class="titleImage" src="images/web_design.jpg" />
</div>
<div id="contact">
     <img class="titleImage" src="images/contact.jpg" />
</div>

这是CSS:

#topNav {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 20px;
}

我想为我的列表项使用“选择”类,并可能将其应用于与用户当前部分对应的任何链接,并执行以下操作:

#topNav li.selected a {
    color: #cbcacc;
}

任何帮助是极大的赞赏!

4

2 回答 2

1

我认为您需要一个名为scrollspy的项目。网上都有一些免费的东西:

您还可以使用关键字scrollspy搜索更多内容。

这是来自上述填充的代码:

JS

// Cache selectors
var lastId,
    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 click handler to menu items
// so we can get a fancy scroll animation
menuItems.click(function(e){
  var href = $(this).attr("href"),
      offsetTop = href === "#" ? 0 : $(href).offset().top-topMenuHeight+1;
  $('html, body').stop().animate({ 
      scrollTop: offsetTop
  }, 300);
  e.preventDefault();
});

// 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 : "";

   if (lastId !== id) {
       lastId = id;
       // Set/remove active class
       menuItems
         .parent().removeClass("active")
         .end().filter("[href=#"+id+"]").parent().addClass("active");
   }                   
});

HTML

<div id="topNav">
     <ul>
          <li><a href="#contact">Contact</a></li>
          <li><a href="#web_design">Web Design</a></li>
          <li><a href="#home">Home</a></li>
     </ul>
</div>
<div class="spacer"></div>
<div id="home">
     <img src="images/dog.jpg" class="bg" />
</div>
<div id="web_design">
     <img class="titleImage" src="images/web_design.jpg" />
</div>
<div id="contact">
     <img class="titleImage" src="images/contact.jpg" />
</div>

CSS

#topNav {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 20px;
}

div.spacer {
    height: 80px;
}

#topNav li.selected a {
    color: #cbcacc;
}
于 2013-08-04T01:30:45.623 回答
-1

CSS3 有一个有趣的选择器:target,您可以根据目标设置链接样式,您可以这样做

:目标{颜色:#ff0000;}

尝试谷歌的 css3 目标选择器

于 2013-08-04T01:22:02.773 回答