Skip to content

Instantly share code, notes, and snippets.

@gaowhen
Last active December 15, 2015 09:01
Show Gist options
  • Select an option

  • Save gaowhen/729b7c5281e2ab636a61 to your computer and use it in GitHub Desktop.

Select an option

Save gaowhen/729b7c5281e2ab636a61 to your computer and use it in GitHub Desktop.
var $win = $(window)
var $progress = $('.progress-indicator')
var wh = $win.height()
var h = $('body').height()
var scrollHeight = h - wh
$win.on('scroll', function () {
var perc = Math.max(0, Math.min(1, $win.scrollTop() / scrollHeight))
$progress.css({
width: perc * 100 + '%'
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment