Guest User

Untitled

a guest
Jul 25th, 2017
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. // ===== Scroll to Top ====
  2. $(window).scroll(function() {
  3. if ($(this).scrollTop() >= 50) { // If page is scrolled more than 50px
  4. $('#return-to-top').fadeIn(200); // Fade in the arrow
  5. } else {
  6. $('#return-to-top').fadeOut(200); // Else fade out the arrow
  7. }
  8. });
  9. $('#return-to-top').click(function() { // When arrow is clicked
  10. $('body,html').animate({
  11. scrollTop : 0 // Scroll to top of body
  12. }, 500);
  13. });
Add Comment
Please, Sign In to add comment