我想创建一个在某个时候切换颜色的旋钮。例如,35 为红色,70 为黄色,100 为绿色。
我也想让它动画。
这是我的小提琴:http: //jsfiddle.net/Tropicalista/jUELj/6/
我的代码是:
enter code here
$(document).ready(function() {
$('.dial').val(13).trigger('change').delay(2000);
$(".dial").knob({
'min':0,
'max':100,
'readOnly': true,
'width': 120,
'height': 120,
'fgColor': '#b9e672',
'dynamicDraw': true,
'thickness': 0.2,
'tickColorizeValues': true,
'skin':'tron'
})
});