Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. $(function() {
  2. $(window).scroll(function() {
  3. if($(this).scrollTop() > $(this).height()) {
  4. $('.top').addClass('active');
  5. } else {
  6. $('.top').removeClass('active');
  7. }
  8. });
  9. $(window).click(function() {
  10. $('html, body').stop().animate({scrollTop: 0},/*800*/ 'slow');
  11. })
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement