关于这个主题,到处都有问题,但我为此尝试了很多不同的脚本,但我无法让它与我的网站一起使用。
我正在为自己构建一个个人作品集 wordpress 主题,并希望将其保留为单页主题。我想要的是当用户单击导航上的链接时,页面会向下滚动到该部分。容易吧?不。
我不知道为什么它在我的网站上不起作用,但我认为这与我用于滚动到固定导航的脚本有关。
这是我目前尝试用来创建此页内导航滚动效果的脚本: http: //css-tricks.com/snippets/jquery/smooth-scrolling/
这是我用来创建滚动到固定导航效果的脚本:
window.onscroll=function () {
var top = window.pageXOffset ? window.pageXOffset : document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop;
if(top > 640){
document.getElementById("nav").style.position = "fixed";
document.getElementById("nav").style.height="65px";
} else {
document.getElementById("nav").style.position = "relative";
document.getElementById("nav").style.height="65px";
}
}
您可以在http://www.tylerb.me查看我正在尝试执行此操作的网站
这两个脚本是否相互矛盾并使其中一个不起作用?