一屏滚完 返回顶部

时间:2022-10-13 20:33:13
    //一屏滚完时,显示返回顶部悬浮层,点击平滑滚动到顶部
$(function () {
$(
"#back-to-top").hide();
$(
function () {
$(window).scroll(
function () {
if ($(window).scrollTop() > window.screen.availHeight) {
$(
"#back-to-top").fadeIn(500);
}
else {
$(
"#back-to-top").fadeOut(500);
}
});
$(
"#back-to-top").click(function () {
$(
'body,html').animate({ scrollTop: 0 }, 500);
return false;
});
});
});