Advertisement
raselmahmud24

scroll top [my own]

Nov 28th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. $(".scroll-top-link").hide();
  2.    
  3.     // fade in #back-top
  4.         $(window).scroll(function () {
  5.             if ($(this).scrollTop() > 100) {
  6.                 $('.scroll-top-link').fadeIn();
  7.             } else {
  8.                 $('.scroll-top-link').fadeOut();
  9.             }
  10.         });
  11.  
  12.         // scroll body to 0px on click
  13.         $('.scroll-top-link').click(function () {
  14.             $('body,html').animate({
  15.                 scrollTop: 0
  16.             }, 800);
  17.             return false;
  18.         });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement