-
-
Notifications
You must be signed in to change notification settings - Fork 546
/
Copy pathscript.js
24 lines (22 loc) · 960 Bytes
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const range = document.getElementById("range");
// https://stackoverflow.com/questions/10756313/javascript-jquery-map-a-range-of-numbers-to-another-range-of-numbers
const scale = (num, in_min, in_max, out_min, out_max) => {
return ((num - in_min) * (out_max - out_min)) / (in_max - in_min) + out_min;
};
range.addEventListener("input", (e) => {
const value = +e.target.value;
const label = e.target.nextElementSibling;
const rangeWidth = getComputedStyle(e.target).getPropertyValue("width");
const labelWidth = getComputedStyle(label).getPropertyValue("width");
// remove px
const numWidth = +rangeWidth.substring(0, rangeWidth.length - 2);
const numLabelWidth = +labelWidth.substring(0, labelWidth.length - 2);
const max = +e.target.max;
const min = +e.target.min;
const left =
value * (numWidth / max) -
numLabelWidth / 2 +
scale(value, min, max, 10, -10);
label.style.left = `${left}px`;
label.innerHTML = value;
});