virae

Untitled

Oct 14th, 2012
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /* --------------------------------------------------------
  2.     Back to top button
  3.    -------------------------------------------------------- */ 
  4.  
  5.     (function() {
  6.  
  7.             $('<i id="back-to-top"></i>').appendTo($('body'));
  8.  
  9.             $(window).scroll(function() {
  10.  
  11.                 if($(this).scrollTop() != 0) {
  12.                     $('#back-to-top').fadeIn();
  13.                 } else {
  14.                     $('#back-to-top').fadeOut();
  15.                 }
  16.  
  17.             });
  18.            
  19.             $('#back-to-top').click(function() {
  20.                 $('body,html').animate({scrollTop:0},600);
  21.             });
  22.  
  23.     })();
Advertisement
Add Comment
Please, Sign In to add comment