我想使用jquery 旋钮在单个表盘中有多个弧。是否可以?见下图。
到目前为止我尝试过的代码。
$(".dial").knob({
'readOnly': true,
'displayPrevious': true,
change : function (value) {
//console.log("change : " + value);
},
release : function (value) {
console.log("release : " + value);
//need to out some logic here
},
cancel : function () {
console.log("cancel : " + this.value);
},
draw : function () {
$(this.i).val(this.cv + '%');
}
});
$('.dial').val(10).trigger('change');
我也愿意使用其他 jquery 库或解决方案。