Skip to content

Instantly share code, notes, and snippets.

@agusputra
Last active November 3, 2019 09:39
Show Gist options
  • Select an option

  • Save agusputra/2bdfaac96c8c752876ef to your computer and use it in GitHub Desktop.

Select an option

Save agusputra/2bdfaac96c8c752876ef to your computer and use it in GitHub Desktop.
let lastScrollTop = 0
$(window).scroll(function(event) {
const st = $(this).scrollTop()
if (st > lastScrollTop) {
// downscroll code
}
else {
// upscroll code
if (window.scrollY <= 100) {
$('.back-to-top-button').fadeOut()
} else {
$('.back-to-top-button').fadeIn()
}
}
lastScrollTop = st
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment