web-dev-qa-db-ja.com

animate.scrolltopおよび(target).offset()。topを使用した固定ヘッダーの説明。

これはかなり基本的な質問になるはずですが、私はほとんどの朝それを投げてきました。この時点で、私はタオルを投げるところです。私はjs fooを少しも持っていませんが、アンカーリンクをアニメーション化するために使用したいと思っているコードの見事なコメントが見つかりました:

_$(document).ready(function() {
$('a[href*=#]').bind('click', function(e) {
e.preventDefault(); //prevent the "normal" behaviour which would be a "hard" jump

var target = $(this).attr("href"); //Get the target

var scrollToPosition = $(target).offset().top;

// perform animated scrolling by getting top-position of target-element and set it     as scroll target
$('html, body').stop().animate({ scrollTop: scrollToPosition}, 600, function() {
     location.hash = target;  //attach the hash (#jumptarget) to the pageurl
});

return false;

 });
});
_

私はそれをoffset()。topの30px上に着陸させようとしています-私は試しました

$('html, body').stop().animate({ scrollTop: scrollToPosition -30}, 600,

それはほとんど機能します-それは正しい場所に行きますが、その後跳ね返ります。

私も試しました

scrollTop: $(target).offset().top - 20 },

私も試しました

scrollTop: $(hash).offset().top + $('#access').outerHeight()

何も変わっていないようです。

答えはここにあるようです: 修正されたヘッダーのあるJQueryページスクロールの問題 しかし、私はそれをまったく理解できないようです。

これは他の質問と似ていることは知っていますが、私は見つけたものを調べましたが、問題を修正するためにコピー/貼り付けを行うことができなかったため、読み書きができません。

私は解決策に信じられないほど感謝するでしょう。

どうもありがとう、

マーティン

PS

私が見つけたこの他のコードのチャンクは機能しますが、ハッシュタグを取り除くため、ほとんど役に立たなくなります。

_$(function(){
$('a[href*=#]').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
    && location.hostname == this.hostname) {
        var $target = $(this.hash);
        $target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
        if ($target.length) {
            var targetOffset = $target.offset().top;
            $('html,body').animate({scrollTop: targetOffset - 30}, 1000);
            return false;
        }
    }
  });
});
_
14
Martin

編集済み:固定ヘッダーの高さを検出し、正しく行っていたscrollToPositionからそれを引く必要があります。問題はwindow.location.hash = "" + target;は、そのIDを持つ要素の上部にページをジャンプします。そのため、以前と同じようにアニメーション化してから、そのハッシュに変更すると、説明したように「バウンス」します。これが私たちがこれと戦うことができる最初の方法です:

// Get the height of the header
var headerHeight = $("div#header").height();

// Attach the click event
$('a[href*=#]').bind("click", function(e) {
    e.preventDefault();

    var target = $(this).attr("href"); //Get the target
    var scrollToPosition = $(target).offset().top - headerHeight;

    $('html').animate({ 'scrollTop': scrollToPosition }, 600, function(){
        window.location.hash = "" + target;
        // This hash change will jump the page to the top of the div with the same id
        // so we need to force the page to back to the end of the animation
        $('html').animate({ 'scrollTop': scrollToPosition }, 0);
    });

    $('body').append("called");
});

これは、この最初のメソッドのnewjsfiddleです: http://jsfiddle.net/yjcRv/1/

さらに編集:ハッシュ変更イベントを制御するさらに良い方法は、 jQueryアドレス のようなプラグインを使用することです。これにより、ハッシュ変更イベントをさらに活用できます。次に使用例を示します。

// Get the height of the header
var headerHeight = $("div#header").height();

$.address.change(function(evt){
    var target = "#" + evt["pathNames"][0]; //Get the target from the event data

    // If there's been some content requested go to it…else go to the top
    if(evt["pathNames"][0]){
        var scrollToPosition = $(target).offset().top - headerHeight;
        $('html').animate({ 'scrollTop': scrollToPosition }, 600);
    }else{
        $('html').animate({ 'scrollTop': '0' }, 600);
    }

    return false;
});

// Attach the click event
$('a').bind("click", function(e) {
    // Change the location
    $.address.value($(this).attr("href"));

    return false;
});

ここにライブの例: http://www.vdotgood.com/stack/user3444.html

注:リンクのhref属性にハッシュを追加する必要はありません。次に、jQueryセレクターでターゲットにできるリンクを示します。

<!-- This is correct -->
<a href="/target" class="myclass">Target</a>

<!-- These are incorrect -->
<a href="/#/target" class="myclass">Target</a>

<a href="#/target" class="myclass">Target</a>

このリンクをターゲットにするには、次のようなセレクターを使用します。

$("a.myclass").click(function(){
    $.address.value($(this).attr("href"));
    return false;
});

jQuery Addressは、実際には次の属性を持つリンクを探します。

<a href="/target" rel="address:/target">Target</a>

ここのrel属性にはaddress:の後に、この場合はユーザーが定義した相対URLが続きます/target。これを使用すると、jQueryアドレスがリンクを検出し、ハッシュ変更イベントを自動的に起動します。

16
Steve O

私はこれが古い質問(種類)であることを知っていますが、Webサイトの固定ドロップダウンナビゲーションで同様の問題に遭遇しました。これはスムーズなスクロールコードスニペットですが、アニメーションの速度を変更することで簡単に自動化できます。

jQuery:

$('body').on('click','a[href^="#"]',function(event){
    event.preventDefault();
    var target_offset = $(this.hash).offset() ? $(this.hash).offset().top : 0;
    //change this number to create the additional off set        
    var customoffset = 75
    $('html, body').animate({scrollTop:target_offset - customoffset}, 500);
});

私はこのコードのチャンクを問題なく長い間使用しました。私がそれについて嫌いな唯一のことは、それがANY#タグをつかむことです。したがって、ナビゲーションが#を使用するFlexsliderプラグインのようなプラグインでは、プラグインから手動で削除します。

7
GregT

http://www.paulund.co.uk/smooth-scroll-to-internal-links-with-jquery から元のスクリプトを微調整しました。驚異的に動作しますが、そのままでは遅延を設定できません。

var headerHeight = $("header").height();


        $(document).ready(function(){
    $('a[href^="#"]').on('click',function (e) {
        e.preventDefault();

        var target = this.hash,
        $target = $(target);

        $('html, body').stop().animate({
            'scrollTop': $target.offset().top - headerHeight
        }, 1200, 'swing', function () {
            window.location.hash = target ;
        });
    });
});

はい、少し遅れましたが、この問題が発生しました...乾杯!

3
Neurone00