我正在做一个项目,我需要旋钮元素(我知道有每个人都共享的库,但无法自定义它,我需要一些可以放置图像的东西,例如旋钮元素)
我找到了这个库,http ://tutorialzine.com/2011/11/pretty-switches-css3-jquery/
当我查看代码时,我看不到我在哪里返回输入值?
有人用过吗?或者如果您有类似的推荐?
这是调用库时的代码
$('#control').knobKnob({
snap : 10,
value: 154, /// How much I understand this is default value setting
turn : function(ratio){
numBars = Math.round(colorBars.length*ratio);
// Update the dom only when the number of active bars
// changes, instead of on every move
if(numBars == lastNum){
return false;
}
lastNum = numBars;
colorBars.removeClass('active').slice(0, numBars).addClass('active');
}
});