javascript ページトップへスクロールするボタン用のJS

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript ページトップへスクロールするボタン用のJS相关的知识,希望对你有一定的参考价值。

    $(function() {
        var toPagetop = $('#pagetop');
        toPagetop.hide();
        $(window).scroll(function() {
            if ($(this).scrollTop() > 80) {
                toPagetop.fadeIn();
            } else {
                toPagetop.fadeOut();
            }
        });
        toPagetop.click(function() {
            $('body,html').animate({
                scrollTop: 0
            }, 500);
            return false;
        });
    });

以上是关于javascript ページトップへスクロールするボタン用のJS的主要内容,如果未能解决你的问题,请参考以下文章

javascript ページトップに戻る

javascript 170821ページトップ(common.jsに记载)

javascript ふわっと固定ページトップボタン

php 161013ページトップ実装

css スクロールトップ

javascript ページ内リンクをスムーススクロール