Guest User

Untitled

a guest
Dec 16th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. $(window).scroll(function() {
  2. var wintop = $(window).scrollTop(), docheight =
  3.  
  4. $('html').height(), winheight = $(window).height();
  5. var scrolled = (wintop/(docheight-winheight))*100;
  6.  
  7. $('.scroll-line').css('width', (scrolled + '%'));
  8. });
Add Comment
Please, Sign In to add comment