activate last section heading when approaching footer (#21)

This commit is contained in:
Sta7e 2021-03-19 03:29:59 +01:00 committed by GitHub
parent 4d6f8a51e5
commit 12321ef691
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -81,6 +81,11 @@ var $sitehead = $("#site-head");
}
$post.each(function () {
if (($(window).height() + w) > ($(document).height() - $(".site-footer").height())) {
var l = $postholder.length;
$(".fn-item[item_index='" + (l - 1) + "']").removeClass("active")
$(".fn-item[item_index='" + (l) + "']").addClass("active")
} else {
var f = $(this).offset().top;
var b = $(this).offset().top + $(this).height();
var t = $(this).parent(".post-holder").index();
@ -99,6 +104,7 @@ var $sitehead = $("#site-head");
i.removeClass("active");
a.fadeIn("slow");
}
}
});
});
}