当我点击我的基础magellan导航上的任何子导航时,我收到一个错误,未被捕获的错误。 它显示top未在foundation.magellation.js的第46行定义,请为上述内容提供任何解决方案。
//如果固定位置,考虑探险高度
var scroll_top = target.offset().top - settings.destination_threshold + 1;//error
scroll_top = scroll_top - expedition.outerHeight();
HTML:启动
<DIV class="row">
<div data-magellan-expedition="fixed">
<ul class="sub-nav">
<li data-magellan-arrival="home"><a href="#home">Home</a></li>
<li data-magellan-arrival="catalogue"><a href="#catalogue">Catalogue</a></li>
<li data-magellan-arrival="about"><a href="#js">About Us</a></li>
<li data-magellan-arrival="contact"><a href="#js">Contact Us</a></li>
</ul>
</div>
</div>
/*end*/
<script src="js/foundation/foundation.min.js"></script>
<script src="js/foundation/foundation.magellan.js"></script>
<script>
$(document).foundation({
"magellan-expedition": {
active_class: 'active', // specify the class used for active sections
threshold: 0, // how many pixels until the magellan bar sticks, 0 = auto
destination_threshold: 10,
throttle_delay: 50, // calculation throttling to increase framerate
fixed_top: 0, // top distance in pixels assigned to the fixed element on scroll
}
});
$(document).foundation();
</script>
</body>
</html>
答案 0 :(得分:0)
添加与子导航中的项目对应的data-magellan-destination属性。它试图找出需要滚动到的位置并且没有定义目标。例如,您可能在页面下方的部分中包含以下属性:
<div data-magellan-destination="home">home content here</div>
<div data-magellan-destination="catalogue">catalogue content here</div>
等