Skip to content

Instantly share code, notes, and snippets.

@chernysh2909
Created June 15, 2017 12:00
Show Gist options
  • Save chernysh2909/185b9045ed9d548cca24cddf6f9686f0 to your computer and use it in GitHub Desktop.
Save chernysh2909/185b9045ed9d548cca24cddf6f9686f0 to your computer and use it in GitHub Desktop.
/*-------button-------*/
$('body').append('<button class="btn_up">TOP</button>');
$('.btn_up').click(function() {
$('html, body').animate({'scrollTop': 0}, 700);
});
$(window).scroll(function() {
if($(window).scrollTop() > 250) {
$('.btn_up').addClass('active');
} else {
$('.btn_up').removeClass('active');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment