Last active
December 15, 2015 09:01
-
-
Save gaowhen/729b7c5281e2ab636a61 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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