I am building a gauge/knob for a climate control UI. I would like to show the current temperature, and allow the user to drag/click to a new value, while keeping the current (old) value visible. I've googled this for days and can't seem to find a slider that does this.
Here is my fiddle for the knob, with displayPrevious set to true. However, when you drag to the new value/position on the knob, I would like the old position to remain visible. This to demonstrate current temperature, and the new, desired temperature on the same knob.
Is this possible?
$(".dial").knob({
'width': 300,
'height': 400,
'min': 40,
'max': 100,
'angleOffset': -125,
'angleArc': 250,
'displayPrevious': 'true'
});
Any, and all help with pointing me in the right direction is much appreciated.