rstacruz / nprogress

For slim progress bars like on YouTube, Medium, etc
http://ricostacruz.com/nprogress
MIT License
25.98k stars 1.81k forks source link

Add logarithmic progress bar growth rate #226

Open ryanelian opened 3 years ago

ryanelian commented 3 years ago

There should be an option to make the progress bar grow logarithmic, as in it will never reach 100% but keeps on growing.

i.e. The progress bar grows toward 70% but slows down, making it never reach 100%.

image

filkalny-thimble commented 2 years ago

Logarithmic will reach 100%, it has no upper bound. What you want is something like x/(x+1), that just approaches 100%, never hitting it.

x/(x+1)