当我达到页面高度的50%时,我试图让我的Scrollspy切换到下一部分。
我看了How do I set the offset for ScrollSpy in Bootstrap?,但我无法找到解决方案。
到目前为止,我只有正常的数据偏移量
<body data-spy="scroll" data-target="#mainNavBar" data-offset="200">
任何人对如何实现它都有任何想法?
答案 0 :(得分:0)
这似乎可以解决问题。
var offsetSize = (screen.height/2);
//Scrollspy offset
$("body").scrollspy({target: "#navID", offset:offsetSize});
});