I've been on the hunt for a circular slider animation. Imagine it working like this:
<input type="range" min="0" max="50" value="0" step="5" onchange="showValue(this.value)" />
<span id="range">0</span>
function showValue(newValue)
{
document.getElementById("range").innerHTML=newValue;
}
Instead of sliding horizontally, I need it to move in a circular motion. Has something similar already been developed? I'm not quite advanced enough to create it from scratch.