2016-05-04 82 views
2

HTML代碼開始DragDealer滑塊值:如何從1而不是0

<div id="notary-slider" class="dragdealer"> 
     <ul class="list_wrapper"> 
     <li>1</li> 
     <li>2</li> 
     <li>3</li> 
     <li>4</li> 
     <li>5</li> 
     <li>6</li> 
     <li>7</li> 
     <li>8</li> 
     <li>9</li> 
     <li>10</li> 
    </ul> 
    <div class="handle red-bar"> 
    <span class="value"></span> 
    </div> 
    <input type="hidden" name="answer[]" id="no-of-documents" required> 
    </div> 


$(function() { 
    new Dragdealer('notary-slider', { 
    speed: 1, 
    loose: true, 
    steps: 10, 
    animationCallback: function(x, y) { 
    $('#notary-slider .value').text(Math.round(x * 10)); 
    $("#no-of-documents").val(Math.round(x * 10)); 
    } 
}); 
}) 

在這個js滑塊的值從0打印到10,但我想滑塊值開始從1至10 。我使用了dragdealer滑塊。任何人都可以幫我解決這個問題。

回答

0

嘗試這樣的:

初始化x: 1,之前speed

$(function() { 
    new Dragdealer('notary-slider', { 
    x: 1, 
    speed: 1, 
    loose: true, 
    steps: 10, 
    animationCallback: function(x, y) { 
    $('#notary-slider .value').text(Math.round(x * 10)); 
    $("#no-of-documents").val(Math.round(x * 10)); 
    } 
}); 
}) 
+0

嗨,它不工作..它仍然盯着0 –

+0

@JyotiRawat,你可以發佈的HTML代碼? –

+0

我已更新HTML代碼.. –