Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. $(window).scroll(function () {
  2. if ($(this).scrollTop() > 300) {
  3. $('.scroll-to-top').fadeIn();
  4. } else {
  5. $('.scroll-to-top').fadeOut();
  6. }
  7. });
  8. $('.scroll-to-top').click(function () {
  9. $('body,html').animate({
  10. scrollTop: 0
  11. }, 750);
  12. return false;
  13. });
  14.  
  15. <div class="scroll-to-top"><i class="fa fa-angle-double-up" aria-hidden="true"></i></div>
  16.  
  17. <style>
  18. .scroll-to-top
  19. position: fixed
  20. bottom: 30px
  21. right: 30px
  22. cursor: pointer
  23. display: none
  24. z-index: 10
  25. background-color: $accent
  26. padding: 6px 12px 6px
  27. border-radius: 50px
  28. transition: all 0.4s ease
  29. box-shadow: 0 0 5px rgba(255,255,255,.8)
  30. &:hover
  31. padding: 8px 15px 8px
  32. background-color: darken($accent, 10%)
  33. .fa
  34. font-size: 30px
  35. color: #fff
  36. line-height: 1
  37. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement