Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在制作一个简单的(测试)网站,并且我想添加一个菜单栏(在网站顶部),当您向下滚动而不是消失时,它会停留在同一位置。我知道我需要 jQuery,可能还需要 JavaScript。它不像滑动菜单,就像当你想发布问题时,stackoverflow 在网站的右侧 -> 但现在我希望它在顶部有一个菜单栏。
我怎样才能制作这种菜单栏?
感谢您的回复,
尼尔斯。
你只需要CSS。你只需要给它一个固定的位置:
#topBar { position:fixed; top:0px; }
这将随着页面滚动。另请参阅此 SO Question。
这是你想要的效果吗? http://www.sutanaryan.com/Tutorials/fixed-menu-when-scrolling-page-with-CSS-and-jQuery/