#annual-sales 入力フィールドに四捨五入されていない数値を入力すると、プラグインは「上」または「下」に応じて自動的に四捨五入します。1234567 などの特定の数値をフィールドに入力して、その値を保持する方法はありますか? 次に、前または次の値にスライドすると、元の位置に戻ります。
<input type="text" id="annual-sales">
<div class="slider-wrap">
<div class="range-slider-sales-vol"></div>
</div>
// The first number in the array represents the range. Between the 4 options below I have a range from 1000 - 1000000.
// The second number represents the stepped increments within the given range. From the first to second range the stepped increments are 1000.
var range_all_sliders = {
'min': [ 1000, 1000 ],
'33%': [ 100000, 50000 ],
'66%': [ 500000, 100000 ],
'max': [ 1000000 ]
};
$('.range-slider-sales-vol').noUiSlider({
start: [ 1000 ],
range: range_all_sliders,
format: wNumb({
decimals: 0
})
});
// Pips plugin for points along range slider
$('.range-slider-sales-vol').noUiSlider_pips({
mode: 'positions',
values: [0,33,66,100],
density: 4,
stepped: true
});
// links range slider to input
$('.range-slider-sales-vol').Link("lower").to($('#annual-sales'));