<!DOCTYPE html>
<html>
<head>
<title>jQuery Knob 尝试</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<!--[if IE]><script type="text/javascript" src="excanvas.js"></script><![endif]-->
<script src="dist/jquery.knob.min.js"></script>
<script>
$(function() {
$(".knob").knob({
max: 940,
min: 500,
thickness: .3,
fgColor: '#2B99E6',
bgColor: '#303030',
// "cursor":true,
'release':function(e){
console.log("release : " + value);
}
}); $(".knob2").knob({
'release':function(e){
// $('#img').animate({width:e});
console.log("release : " + value);
}
});
});
</script> </head>
<body> <div >
<input class="knob" data-width="200" data-skin="tron" data-displayInput="true" value="200"> <input class="knob2" data-width="150" data-fgColor="green" data-bgColor="#ffec03" data-skin="tron" data-thickness=".3" data-min="200" data-max="600" value="200"> </div> </body>
</html>
参数设置可以在input里直接设置也可以用js初始化。
效果图
源码下载==》下载