English 中文(简体)
当页面到达某个 # 锁定点时, 是否有办法改变我的“ 标题” 风格?
原标题:Is there a way to change my <header> style when the page reaches certain #anchor point?

我有一个问题要问, 希望能得到答案 。 我正制作一个有四个 < codeanchor points " pages. divs 有100%的高度, 以填满整个浏览器的高度 。 我的头( logo 和 导航) 有固定的位置 。 当用户点击链接或滚动到第三和第四个 < codeanchor 点时, 我想改变我的头的风格( 我的标识和链接颜色 ) 。 有人能帮助我解决这个问题吗?

问题回答

< a href=> "http://imakewebthings.com/jquery-waypoints" rel="no follow" >jQuery Waypoints 可能是一个容易实现这一点的方法。它允许您在用户滚动超过页面上某些点时触发任何动作 。

这将检查页面上的 div 相对于您在滚动中瞄准的 div 的高度位置。 我相信这就是您正在寻找的 。

$(function(){



$(window).scroll(function(){
    if($( #targetDiv ).offset().top >= window.scrollX ){

    }


  })
})  




相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签