Skip to content

Instantly share code, notes, and snippets.

@michiel
Created August 5, 2014 09:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michiel/0b87859df60c8489ed53 to your computer and use it in GitHub Desktop.
Save michiel/0b87859df60c8489ed53 to your computer and use it in GitHub Desktop.
function logslider(pos) {
var minp = 0;
var maxp = 100;
var minv = Math.log(100);
var maxv = Math.log(10000000);
var scale = (maxv - minv) / (maxp - minp);
return Math.exp(minv + scale * (pos - minp));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment