d81f836b06
A dynamically expanding/collapsing topbar is difficult to maintain and not very useful.
17 lines
350 B
JavaScript
17 lines
350 B
JavaScript
/**
|
|
* Reference: https://bootsnipp.com/snippets/featured/link-to-top-page
|
|
*/
|
|
|
|
export function back2top() {
|
|
$(window).on('scroll', () => {
|
|
if ($(window).scrollTop() > 50) {
|
|
$('#back-to-top').fadeIn();
|
|
} else {
|
|
$('#back-to-top').fadeOut();
|
|
}
|
|
});
|
|
|
|
$('#back-to-top').on('click', () => {
|
|
window.scrollTo(0, 0);
|
|
});
|
|
}
|