Advertisement
Guest User

Untitled

a guest
Aug 24th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. $(document).ready(function(){
  2.  
  3. $("#back-top").hide();
  4.  
  5. $(function () {
  6. $(window).scroll(function () {
  7. if ($(this).scrollTop() > 1000) {
  8. $('#back-top').fadeIn();
  9. } else {
  10. $('#back-top').fadeOut();
  11. }
  12. });
  13.  
  14. $('#back-top a').click(function () {
  15. $('body,html').animate({
  16. scrollTop: 0
  17. }, 800);
  18. return false;
  19. });
  20. });
  21. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement