Skip to content

Instantly share code, notes, and snippets.

@jbd91
Created February 2, 2018 04:24
Show Gist options
  • Select an option

  • Save jbd91/4a079a15c672a9ceced718390f699ef8 to your computer and use it in GitHub Desktop.

Select an option

Save jbd91/4a079a15c672a9ceced718390f699ef8 to your computer and use it in GitHub Desktop.
Back to Top Button
// Back to Top Button
var offset = 100;
var speed = 250;
var duration = 500;
$(window).scroll(function(){
if ($(this).scrollTop() < offset) {
$('.top-button') .fadeOut(duration);
} else {
$('.top-button') .fadeIn(duration);
}
});
$('.top-button').on('click', function(){
$('html, body').animate({scrollTop:0}, speed);
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment