kaughtup
11/9/2017 - 9:30 AM

ページトップへスクロールするボタン用の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;
        });
    });