Guest User

Untitled

a guest
Dec 16th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. $(window).on('scroll', function(){
  2.  
  3. // in percentage
  4. //$('#custom-scrollbar-thumb').css('top', -$(window).scrollTop() / ($(window).height() - $('body')[0].scrollHeight) * 100 +'%' );
  5.  
  6. // in pixels
  7. $('#custom-scrollbar-thumb').css('top', $(window).scrollTop() * ($(window).scrollTop() / $('body')[0].scrollHeight) +'px' );
  8.  
  9. });
  10.  
  11. $(window).on('resize', function(){
  12.  
  13. $('#custom-scrollbar-thumb').css('height', window.innerHeight * (window.innerHeight / document.body.offsetHeight) +'px' );
  14.  
  15. });
Add Comment
Please, Sign In to add comment