我对 jQuery 很陌生,只用了一点点,所以这可能是一个微不足道的问题。我也是第一次尝试使用 HTML Boilerplate。
我试图在 ScrollTo/LocalScroll ( http://flesler.blogspot.co.uk/2007/10/jquerylocalscroll-10.html ) 的帮助下在两个轴上产生平滑的滚动。该网站将由窗口大小的框组成,顶部有一个固定的导航。然后浏览器窗口应平滑滚动到该位置。
到目前为止,我的编程可以在这里找到 http://www.andylang.ch/2013/
两个脚本都已加载,我试图在 main.js 文件中像这样初始化它们
//Smooth scrolling
jQuery(function( $ ){
// scroll both directions
$.localScroll.defaults.axis = 'xy';
// Scroll initially if there's a hash (#something) in the url
$.localScroll.hash({
queue:false,
duration:1500
});
// Scroll settings
$.localScroll({
queue:false,
duration:1000,
hash:true
});
});
任何帮助都将不胜感激。
谢谢,安迪