Files
plugins/TopTop/js/toptop.js
chorblack e75f275ef4
Some checks failed
定时更新GitHub源插件 / 自动更新GitHub插件 (push) Has been cancelled
Initial commit
2026-03-07 11:19:25 +08:00

18 lines
381 B
JavaScript

$(function () {
$(window).scroll(function () {
var scroHei = $(window).scrollTop();
if (scroHei > 500) {
$('.back-to-top').css('top', '-200px');
} else {
$('.back-to-top').fadeOut();
}
})
$('.back-to-top').click(function () {
$('body,html').animate({
scrollTop: 0
}, 600);
})
})