我想创建一个类似于本网站的导航栏:
http://www.mysupermarket.co.uk/#/shelves/top_offers_in_asda.html
谁能告诉我如何创建导航栏,它在您向下滚动页面时跟随您,但在页面初始加载时不跟随您?
当您访问给定的网站时,尝试向下滚动,您就会明白我在说什么。由MY SHOP、OFFERS、IDEAS & LIFESTYLE、BAKERY等组成的导航栏...
我真的不知道它叫什么。至少告诉我它叫什么,这样我就可以搜索了。
这是我已经完成的解决方案
window.onscroll = function(){
if(getScrollTop()>140) {
document.getElementById("menu").style.position="fixed";
} else {
document.getElementById("menu").style.position="";
}
}
function getScrollTop() {
if (window.onscroll) {
// Most browsers
return window.pageYOffset;
}
var d = document.documentElement;
if (d.clientHeight) {
// IE in standards mode
return d.scrollTop;
}
// IE in quirks mode
return document.body.scrollTop;
}