Guest User

Untitled

a guest
Jan 23rd, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. $(document).ready(function () {
  2. $(window).scroll(function () {
  3. var s = $(this).scrollTop(),
  4. d = $(document).height()-$(window).height(),
  5. scrollPercent = 0;
  6. if($(this).scrollTop()< $('.separator').position().top){
  7. scrollPercent = (s / d)*100;
  8. $("#progressbar").attr('value', scrollPercent);
  9. }
  10. else{
  11. scrollPercent = (( $(this).scrollTop() - $('.separator').position().top )/ d)*100;
  12. $("#progressbar").attr('value', scrollPercent);
  13. }
  14. });
  15. });
Add Comment
Please, Sign In to add comment