web-dev-qa-db-ja.com

jqueryを使用してページの特定の場所にスクロールするにはどうすればよいですか?

JQueryを使用してページ上の特定の場所にスクロールすることは可能ですか?

スクロールする場所は次のようにする必要がありますか?

<a name="#123">here</a>

または、特定のDOM IDに移動することはできますか?

129
mrblah

jQuery Scroll Plugin

これはjqueryでタグ付けされた質問なので、このライブラリにはスムーズなスクロールのための非常に素晴らしいプラグインがあると言わなければならないので、ここで見つけることができます: http:/ /plugins.jquery.com/scrollTo/

ドキュメントからの抜粋:

$('div.pane').scrollTo(...);//all divs w/class pane

または

$.scrollTo(...);//the plugin will take care of this

スクロール用のカスタムjQuery関数

カスタムスクロールjquery関数を定義することで、非常に軽量なアプローチを使用できます

$.fn.scrollView = function () {
    return this.each(function () {
        $('html, body').animate({
            scrollTop: $(this).offset().top
        }, 1000);
    });
}

次のように使用します:

$('#your-div').scrollView();

ページ座標までスクロールする

htmlまたはbody属性を使用して、scrollTopおよびscrollLeftエレメントをアニメートする

$('html, body').animate({
    scrollTop: 0,
    scrollLeft: 300
}, 1000);

プレーンjavascript

window.scrollでのスクロール

window.scroll(horizontalOffset, verticalOffset);

まとめると、window.location.hashを使用してIDを持つ要素にジャンプします

window.location.hash = '#your-page-element';

HTMLで直接(アクセシビリティの強化)

<a href="#your-page-element">Jump to ID</a>

<div id="your-page-element">
    will jump here
</div>
240
Juraj Blahunka

はい、プレーンJavaScriptでも簡単です。要素にidを指定すると、それを「ブックマーク」として使用できます。

<div id="here">here</div>

ユーザーがリンクをクリックしたときにスクロールする場合は、試行錯誤した方法を使用できます。

<a href="#here">scroll to over there</a>

プログラムで行うには、 scrollIntoView() を使用します

document.getElementById("here").scrollIntoView()
125
nickf

プラグインを使用する必要はありません。次のように実行できます。

var divPosition = $('#divId').offset();

次に、これを使用してドキュメントを特定のDOMにスクロールします。

$('html, body').animate({scrollTop: divPosition.top}, "slow");
51
Meghdad Hadidi

純粋なjavascriptバージョンは次のとおりです。

location.hash = '#123';

自動的にスクロールします。 「#」プレフィックスを忘れずに追加してください。

21
o.k.w

プレーンJavascript:

window.location = "#elementId"
6
Luiz Picanço
<div id="idVal">
    <!--div content goes here-->
</div>
...
<script type="text/javascript">
     $(document).ready(function(){
         var divLoc = $('#idVal').offset();
         $('html, body').animate({scrollTop: divLoc.top}, "slow");
     });
</script>

この例は、特定のdiv id、つまりこの場合は「idVal」を見つけることを示しています。このページでajaxを介して開く後続のdiv/tableがある場合、一意のdivを割り当て、divの各コンテンツの特定の場所までスクロールするスクリプトを呼び出すことができます。

これが役に立つことを願っています。

5
user2793243
<script type="text/javascript">
    $(document).ready(function(){
        $(".scroll-element").click(function(){
            $('html,body').animate({
                scrollTop: $('.our_companies').offset().top
            }, 1000);

            return false;
        });
    })
</script>
4
Yogesh Rathod

これを試して

<div id="divRegister"></div>

$(document).ready(function() {
location.hash = "divRegister";
});
1
Ajay-Systematix

@ juraj-blahunkaの軽量アプローチのバリアントです。この関数は、コンテナがドキュメントであると想定せず、アイテムが表示されていない場合にのみスクロールします。不要なバウンスを回避するために、アニメーションキューも無効になります。

$.fn.scrollToView = function () {
    return $.each(this, function () {
        if ($(this).position().top < 0 ||
            $(this).position().top + $(this).height() > $(this).parent().height()) {
            $(this).parent().animate({
                scrollTop: $(this).parent().scrollTop() + $(this).position().top
            }, {
                duration: 300,
                queue: false
            });
        }
    });
};
0
Richie

scroll-behavior: smooth;を使用して、Javascriptなしでこれを実行できます

https://developer.mozilla.org/en-US/docs/Web/CSS/scroll-behavior

0
Sairam

Jquery.easing.min.jsを使用し、IEコンソールエラーを修正しました

Html

<a class="page-scroll" href="#features">Features</a>
<section id="features" class="features-section">Features Section</section>


        <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
        <script src="js/jquery.js"></script>
        <!-- Include all compiled plugins (below), or include individual files as needed -->
        <script src="js/bootstrap.min.js"></script>

        <!-- Scrolling Nav JavaScript -->
        <script src="js/jquery.easing.min.js"></script>

Jquery

//jQuery to collapse the navbar on scroll, you can use this code with in external file with name scrolling-nav.js
        $(window).scroll(function () {
            if ($(".navbar").offset().top > 50) {
                $(".navbar-fixed-top").addClass("top-nav-collapse");
            } else {
                $(".navbar-fixed-top").removeClass("top-nav-collapse");
            }
        });
        //jQuery for page scrolling feature - requires jQuery Easing plugin
        $(function () {
            $('a.page-scroll').bind('click', function (event) {
                var anchor = $(this);
                if ($(anchor).length > 0) {
                    var href = $(anchor).attr('href');
                    if ($(href.substring(href.indexOf('#'))).length > 0) {
                        $('html, body').stop().animate({
                            scrollTop: $(href.substring(href.indexOf('#'))).offset().top
                        }, 1500, 'easeInOutExpo');
                    }
                    else {
                        window.location = href;
                    }
                }
                event.preventDefault();
            });
        });
0
Super Model