Advertisement
ArtSemkin

Untitled

Jun 10th, 2020
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. // scroll-to-top button functionality
  3. (function($) {
  4.   $('body').append('<a href="#" title="Scroll to Top" class="scrollup">Scroll</a>');
  5.   $(window).scroll(function() {
  6.     if ($(this).scrollTop() > 300) {
  7.       $('.scrollup').fadeIn(850);
  8.     } else {
  9.       $('.scrollup').fadeOut(850);
  10.     }
  11.   });
  12.   $('.scrollup').click(function() {
  13.     $("html, body").animate({
  14.       scrollTop: 0
  15.     }, 850);
  16.     return false;
  17.   });
  18. })(jQuery);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement