私はjQueryを初めて使用し、少ししか作業していないので、これは些細な問題かもしれません。また、HTML Boilerplate を初めて使用しようとしています。
ScrollTo/LocalScroll ( http://flesler.blogspot.co.uk/2007/10/jquerylocalscroll-10.html ) を使用して、両方の軸でスムーズなスクロールを作成しようとしています。Web サイトは、ウィンドウのサイズのボックスで構成され、上部に固定ナビゲーションがあります。ブラウザ ウィンドウは、その場所までスムーズにスクロールするはずです。
これまでの私のプログラミングはここにあり ます 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
});
});
どんな助けでも感謝します。
ありがとう、アンディ