私は大きな問題を抱えているか、小さな問題を抱えています。Web サイトをスクロールしようとしているので、各コンテナーが Web サイトの上部の特定の位置にスライドします。しかし、私が見る限り、問題があります。最初のアイテムをクリックしてから次のアイテムをクリックすると、スクリプトは同じ位置にスクロールしますが、前にクリックしたアイテムの上のアイテムをクリックすると、ページの下。
このための私のスクリプトは単純なアンカー スクリプトです。
$("a.scrollForMe").each(function() { // go through all links
var href = $(this).attr("href");
if (typeof(href) == "undefined") { return; }
if ($(this).attr("href").match(/^#/)) { // if href starts with #
$(this).click(function() { // add a click event to it
var name = $(this).attr("href").substring(1); // get the anchor link
// on click, scroll to the a with a name attribute matching the anchor
$('html, body').animate({scrollTop: $("section[name='" + name + "']").offset().top - 420}, 1000);
//alert ("This height is: " + $("section[name='" + name + "']").height() + " and it's name is " + name);
});
}
});
現在どのように機能しているかを確認したい場合は、私のウェブサイトをご覧ください: http://1st-issue.de/2012/redaxo/#sec10
あなたが私を助けてくれることを願っています!前もって感謝します!