【发布时间】:2015-12-10 22:11:34
【问题描述】:
我有单页网站alampk.com
在这里,我在顶部固定了导航栏,但是当我单击任何链接时,例如 exp,portfolio...
它确实移至该部分,但顶部 50px 部分位于导航栏后面,我尝试了很多东西(css 和 jquery),但没有解决这个问题。
我尝试了以下jquery
$(".nav a").click(function(){
$(window).scrollTop($(window).scrollTop()-50);
});
//but this executes before reaching to target section of page
//and also I not sure -50 will be accurate value for required positioning
我还在导航栏之前创建了一个div
<div id="navPlaceHolder"></div>
//css
#navPlaceHolder{
height:50px;
visibility:hidden;
}
但这仅适用于最顶部的部分
【问题讨论】:
-
请添加一些截图,并发布导航栏代码。
-
我提到了url,是静态html页面,请调试代码
标签: jquery html css twitter-bootstrap-3