0

これが非常に単純でばかげた修正かもしれないことはわかっていますが、答えが見つからず、頭がおかしくなりそうです。

http://mozlo.com/zabzie/をご覧ください。

上部のナビゲーションのリンクをクリックすると、それらは死んでいます。jquery.scrollpath.js を無効にすると、期待どおりに機能しますが、そのスクリプトが必要です。この問題を解決する方法について何か考えはありますか? 考えられることはすべて試しましたが、役に立ちませんでした。助けていただければ幸いです

前もって感謝します!

ファビオ

4

1 に答える 1

1

これを変える:

// Add scrollTo on click on the navigation anchors
$("nav").find("a").each(function() {
    var target = $(this).attr("href").replace("#", "");
    $(this).click(function(e) {
        e.preventDefault();

        // Include the jQuery easing plugin (http://gsgd.co.uk/sandbox/jquery/easing/)
        // for extra easing functions like the one below
        $.fn.scrollPath("scrollTo", target, 1000, "easeInOutSine");
    });
});

に:

// Add scrollTo on click on the navigation anchors
$("nav#panelnav").find("a").each(function() {
    var target = $(this).attr("href").replace("#", "");
    $(this).click(function(e) {
        e.preventDefault();

        // Include the jQuery easing plugin (http://gsgd.co.uk/sandbox/jquery/easing/)
        // for extra easing functions like the one below
        $.fn.scrollPath("scrollTo", target, 1000, "easeInOutSine");
    });
});

メインナビゲーションに影響を与えないように

demo.js で

于 2012-08-29T22:35:07.243 に答える