mirror of
https://github.com/cotes2020/jekyll-theme-chirpy.git
synced 2025-06-08 16:48:09 +00:00
18 lines
350 B
JavaScript
18 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);
|
|
});
|
|
}
|