Skip to content

Instantly share code, notes, and snippets.

@davidbjourno
Created March 1, 2016 10:31
Show Gist options
  • Save davidbjourno/b9e9a7d531a269e2dc85 to your computer and use it in GitHub Desktop.
Save davidbjourno/b9e9a7d531a269e2dc85 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
var documentHeight = $(document).height(),
windowHeight = $(window).height(),
scrollPercent;
$(window).scroll(function() {
scrollPercent = ($(window).scrollTop()) / (documentHeight - windowHeight) * 100;
$(".progress-bar").width(scrollPercent + "%");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment