2019-09-30 20:38:41 +08:00
|
|
|
/*
|
|
|
|
Reference: https://bootsnipp.com/snippets/featured/link-to-top-page
|
|
|
|
*/
|
|
|
|
$(function() {
|
2020-12-24 22:51:08 +08:00
|
|
|
$(window).scroll(() => {
|
2020-12-10 19:49:43 +08:00
|
|
|
if ($(this).scrollTop() > 50 &&
|
|
|
|
$("#sidebar-trigger").css("display") === "none") {
|
|
|
|
$("#back-to-top").fadeIn();
|
|
|
|
} else {
|
|
|
|
$("#back-to-top").fadeOut();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-12-24 22:51:08 +08:00
|
|
|
$("#back-to-top").click(() => {
|
2020-12-27 14:24:43 +08:00
|
|
|
$("body,html").animate({
|
|
|
|
scrollTop: 0
|
|
|
|
}, 800);
|
2019-09-30 20:38:41 +08:00
|
|
|
return false;
|
|
|
|
});
|
2020-12-10 19:49:43 +08:00
|
|
|
});
|