Guest User

Untitled

a guest
Nov 22nd, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $(window).scroll(function(){
  2. if ($(this).scrollTop()>100 {
  3. var $upbutton = $('#upbutton');
  4. if ($upbutton.is(':hidden')){
  5. $upbutton.css({opacity:1}).fadeIn('slow');
  6. }
  7. } else{ $('#upbutton').stop(true, false).fadeOut('fast');}
  8. });
  9. $( '#upbutton').click(function(){
  10. $('html, body').stop().animate({scrollTop: 0}, 300);
  11. });
Add Comment
Please, Sign In to add comment