Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. $(document).ready(function(){
  2.  
  3. $(window).scroll(function(){
  4. if ($(this).scrollTop() > 160) {
  5. $('.scrollToTop').fadeIn();
  6. } else {
  7. $('.scrollToTop').fadeOut();
  8. }
  9.  
  10. });
  11.  
  12. $('.scrollToTop').click(function(){
  13. $('html, body').animate({scrollTop : 0},800);
  14. return false;
  15. });
  16. });
  17.  
  18. <div class="scrollToTop-container">
  19. <a href="#" class="scrollToTop"><img src="img/icon_arrow_up.png" width="24" height="24" /> <br/>Scroll to top</a>
  20. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement