Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. $(window).scroll(function() {
  2. if ($(window).scrollTop() > 550) {
  3. $('div.to-top-btn').fadeIn('fast');
  4. } else {
  5. $('div.to-top-btn').fadeOut('slow');
  6. }
  7. });
  8. $('div.to-top-btn').click(function() {
  9. $('html, body').animate({
  10. scrollTop: 0
  11. }, 1000);
  12. return false;
  13. });
  14.  
  15. /* CSS */
  16.  
  17. .to-top-btn {
  18. width: 50px;
  19. height: 50px;
  20. position: fixed;
  21. bottom: 30px;
  22. right: 40px;
  23. border-radius: 100px;
  24. background: rgba(0,0,0,0.5);
  25. display: none;
  26. cursor: pointer;
  27. }
  28. .to-top-btn .fa-arrow-up {
  29. margin: 16px 0 0 16px;
  30. color: white;
  31. }
  32.  
  33. /* end css */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement