Guest User

Untitled

a guest
Jun 22nd, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. // scroll to content button
  2. var $scrollToContentBtn = $('.js-scroll-to-content'),
  3. allowScrolling = true;
  4.  
  5. allowAutoScrolling = $(window).scrollTop() === 0;
  6.  
  7. $(window).scroll(function () {
  8. var $this = $(this);
  9.  
  10. if ($this.scrollTop() > 0 && allowAutoScrolling) {
  11. $('html, body').animate({
  12. scrollTop: $this.height()
  13. }, 'slow');
  14. }
  15.  
  16. allowAutoScrolling = $this.scrollTop() === 0;
  17. });
Add Comment
Please, Sign In to add comment