jQuery回顶部
Posted 黄良钵博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery回顶部相关的知识,希望对你有一定的参考价值。
<!-- 返回顶部 -->
<div class="flex align-items-center justify-content-center goTop">回顶部</div>
$(window).scroll(function () {
/* 判断滚动条 距离页面顶部的距离 100可以自定义*/
if ($(window).scrollTop() > 100) {
$(".goTop").fadeIn(100); /* 这里用.show()也可以 只是效果太丑 */
$('.goTop').css({
display: 'flex'
})
} else {
$(".goTop").fadeOut(100);
}
});
// 回顶部
$('.goTop').click(function () {
$('body,html').animate({
scrollTop: 0
}, 500);
return false;
})
以上是关于jQuery回顶部的主要内容,如果未能解决你的问题,请参考以下文章
html Vanilla JavaScript和jQuery版本将页面滑回顶部
jQuery addClass 导致窗口在 Android 和 iPhone 上滚动回顶部