I have a slider with steps 0-100;
I want the range to be from 100 to 10,000,000.
I've seen some functions scattered around the net but they're all in C++; i need it in javascript.
Any ideas?
|
1
|
I have a slider with steps 0-100; I want the range to be from 100 to 10,000,000. I've seen some functions scattered around the net but they're all in C++; i need it in javascript. Any ideas? |
||
|
|
|
|
You can use a function like this:
The resulting values match a logarithmic scale:
|
||||
|
|
|
To get the distribution you want, I think you can use this formula:
Here's a self-contained page that will print the values you'll get for your 0-100 slider, having passed them through that formula:
The numbers go from 100 to 10,000,000 in what looks to my mathematically-rusty eye to be the distribution you want. 8-) |
||||||||||
|