私は正しい方向に進んでいると思います。単純なものが欠けているようです
jquery ノブ プラグインを使用して入力フィールドを更新しています
$('document').ready(function() {
$(".knob").knob({
change : function (value) {
//console.log("change : " + value);
},
release : function (value) {
//console.log(this.$.attr('value'));
console.log("release : " + value);
var num = parseInt($("#sitesinput").val());
var total = $(".one").length;
alert(num + ' ' + total);
$(".one").slice(1,value).fadeToggle();
},
cancel : function () {
console.log("cancel : ", this);
}
});
});
<div class="item box one">1</div>
<div class="item box one">2</div>
<div class="item box one">3</div>
<div class="item box one">4</div>
<div class="item box two"></div>
<div class="item box two"></div>
<div class="item box two"></div>
<div class="item box two"></div>
<div class="item box three"></div>
<div class="item box three"></div>
<div class="item box three"></div>
<div class="item box three"></div>
デモに取り組んでいるデモへのリンクを添付しました
ありがとう、