Guest User

Untitled

a guest
Jan 16th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. $(window).scroll(function() {
  2. if ($(this).scrollTop()) {
  3. $('#toTop').fadeIn();
  4. } else {
  5. $('#toTop').fadeOut();
  6. }
  7. });
  8. // Event Click
  9. $("#toTop").click(function() {
  10. $("html, body").animate({scrollTop: 0}, 1000);
  11. });
Add Comment
Please, Sign In to add comment