Skip to content

Instantly share code, notes, and snippets.

@iiiBird
Created October 18, 2018 09:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iiiBird/3536b35ba85cd8506ff859b5dff527c4 to your computer and use it in GitHub Desktop.
Save iiiBird/3536b35ba85cd8506ff859b5dff527c4 to your computer and use it in GitHub Desktop.
up-btn
$(window).on('scroll', function() {
if ( $(this).scrollTop() >= $(window).height()/3 ) {
$('.up-btn').addClass('active');
} else {
$('.up-btn').removeClass('active');
}
});
$('.up-btn').on('click', function() {
$("html, body").animate({ scrollTop: 0 }, 600);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment