基于当前Div改变链接样式

时间:2013-08-04 01:05:59

标签: javascript jquery html css viewport

我有一个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;
}

非常感谢任何帮助!

2 个答案:

答案 0 :(得分:1)

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

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

这是以上fillde的代码:

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;
}

答案 1 :(得分:-1)

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

:目标{颜色:#FF0000;}

尝试google for css3目标选择器