Guest User

Untitled

a guest
Jul 19th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. $(window).scroll(function() {
  2. if ($(this).scrollTop() > 300){
  3. $('.click-to-top').fadeIn(1000);
  4. } else {
  5. $('.click-to-top').fadeOut();
  6. }
  7. });
  8.  
  9. $(".goTotop").click(function() {
  10. $("html, body").animate({scrollTop: 0}, 1000);
  11. });
  12.  
  13.  
  14. // html
  15. <div class="click-to-top">
  16. <a href="#body-wrapper" class="goTotop"><i class="fas fa-angle-double-up"></i></a>
  17. </div>
Add Comment
Please, Sign In to add comment