作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
HTML 代码是:
<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中, slider 的值从0到10打印,但我希望 slider 值从1到10开始。我使用了dragdealer slider 。谁能帮我解决这个问题。
最佳答案
尝试这样:
在speed
之前初始化x: 1,
。
$(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));
}
});
})
关于javascript - 如何从 1 而不是 0 开始 DragDealer slider 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37019774/
我是一名优秀的程序员,十分优秀!