スクロールしたらフェードインしながら表示される「TOPへ戻る」

Ads

Result

jQuery

//初期は非表示
$("#back-top").hide();
 
$(function () {
    $(window).scroll(function () {
        //100pxスクロールしたら
        if ($(this).scrollTop() > 100) {
            //フェードインで表示
            $('#back-top').fadeIn();
        } else {
            $('#back-top').fadeOut();
        }
    });
    //ここからクリックイベント
    $('#back-top a').click(function () {
        $('body,html').animate({
            scrollTop: 0
        }, 500);
        return false;
    });
});

css

#back-top {
    position: fixed;
    bottom: 30px;
    margin-left: 150px;
}
#back-top a {
    width: 108px;
    height: 108px;
    display: block;
    text-align: center;
    text-decoration: none;
    color: #666;
    background:#eee;
}
#back-top a:hover {
    color: #000;
}

html

<p id="back-top">
     <a href="#top">Back to Top</a>
 </p>

via

Animated Scroll to Top


Warning: include(/home/youhei0828/kachibito.net/public_html/wp-content/themes/cocoon-master/my-php/jquery-other-snippets.php): Failed to open stream: No such file or directory in /home/youhei0828/kachibito.net/public_html/wp-content/themes/kachibito7_with_cocoon_child/functions-module/shortcode/add-post-myphp.php on line 7

Warning: include(): Failed opening '/home/youhei0828/kachibito.net/public_html/wp-content/themes/cocoon-master/my-php/jquery-other-snippets.php' for inclusion (include_path='.:/opt/php-8.1.29/data/pear') in /home/youhei0828/kachibito.net/public_html/wp-content/themes/kachibito7_with_cocoon_child/functions-module/shortcode/add-post-myphp.php on line 7