css 回到顶部的片段

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 回到顶部的片段相关的知识,希望对你有一定的参考价值。

$(document).ready(function(){
     $(window).scroll(function () {
            if ($(this).scrollTop() > 50) {
                $('#back-to-top').fadeIn();
            } else {
                $('#back-to-top').fadeOut();
            }
        });
        // scroll body to 0px on click
        $('#back-to-top').click(function () {
            $('#back-to-top').tooltip('hide');
            $('body,html').animate({
                scrollTop: 0
            }, 800);
            return false;
        });
        
        $('#back-to-top').tooltip('show');

});
<a id="back-to-top" href="#" class="btn btn-primary btn-lg back-to-top" role="button" title="Click to return on the top page" data-toggle="tooltip" data-placement="left">
	<span class="glyphicon glyphicon-chevron-up"></span>
</a>
.back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display:none;
}

以上是关于css 回到顶部的片段的主要内容,如果未能解决你的问题,请参考以下文章

html css jquery 回到顶部按钮

css 更好的回到顶部按钮样式

css 回到Beaver Builder的顶部

css 回到顶部

css 回到顶部

css 回到顶部按钮