有没有什么办法可以在点击时停止button
拖动
文档没有给出正确的描述
http://www.eyecon.ro/bootstrap-slider/
$("#stopDrag").click(function(){
});
有没有什么办法可以在点击时停止button
拖动
文档没有给出正确的描述
http://www.eyecon.ro/bootstrap-slider/
$("#stopDrag").click(function(){
});
使用启用和禁用功能扩展滑块插件,例如:
<script src="/slider/js/bootstrap-slider.js"></script>
<script>
$.fn.slider.Constructor.prototype.disable = function () {
this.picker.off();
}
$.fn.slider.Constructor.prototype.enable = function () {
if (this.touchCapable) {
// Touch: Bind touch events:
this.picker.on({
touchstart: $.proxy(this.mousedown, this)
});
} else {
this.picker.on({
mousedown: $.proxy(this.mousedown, this)
});
}
}
</script>
示例 html:
<div class="container" style="background-color:darkblue;">
<br>
<input id="slide" type="text" class="span2" value="" data-slider-min="-20" data-slider-max="20" data-slider-step="1" data-slider-value="-14" data-slider-orientation="vertical" data-slider-selection="after">
<button id="enable">Enable</button>
<button id="disable">Disable</button>
</div>
示例 javascript:
$('#slide').slider();
$('#enable').click(function(){ $('#slide').slider('enable') });
$('#disable').click(function(){ $('#slide').slider('disable') });
data-slider-enabled
通过将属性设置为true
或来实现禁用滑块的功能false
。
所以你可以像这样实现一个禁用的滑块:
<input id="slide" type="text" data-slider-min="0" data-slider-max="20" data-slider-step="1" data-slider-value="5" data-slider-enabled="false"/>
或者像这样启用的滑块:
<input id="slide" type="text" data-slider-min="0" data-slider-max="20" data-slider-step="1" data-slider-value="5" data-slider-enabled="true"/>
您还可以使用 jQuery 启用和禁用这样的滑块:
$("#slide").slider();
$("#slide").slider("enable");
$("#slide").slider("disable");
或者像这样使用纯 JavaScript:
var slide = new Slider("#slide");
slide.enable();
slide.disable();
对于您的实施,您需要这样做:
$("#stopDrag").click(function(){
$("#slide").slider("disable");
});
您需要绑定 mouseenter / mouseleave 事件以显示/隐藏工具提示:
$.fn.slider.Constructor.prototype.disable = function() {
this.picker.off();
}
$.fn.slider.Constructor.prototype.enable = function() {
if (this.touchCapable) {
// Touch: Bind touch events:
this.picker.on({
touchstart: $.proxy(this.mousedown, this),
mouseenter: $.proxy(this.showTooltip, this),
mouseleave: $.proxy(this.hideTooltip, this)
});
} else {
this.picker.on({
mousedown: $.proxy(this.mousedown, this),
mouseenter: $.proxy(this.showTooltip, this),
mouseleave: $.proxy(this.hideTooltip, this)
});
}
}
只需在滑块容器上有一个自定义 css 类,该类通过指针事件控制鼠标事件。然后它只是在您的 javascript 代码中添加或删除它。
CSS看起来像这样
#container {
pointer-events:auto;
}
#container.slider-unavailable {
pointer-events:none;
}
您只需在滑块容器元素上添加/删除类。使用角度特别好,您的代码就像这样:
<div class="container" ng-class="{'class1 class2 class3':true, 'slider-unavailable':sliderIsUnavailable}">
<input id="slide" type="text" class="span2" value="" data-slider-min="-20" data-slider-max="20" data-slider-step="1" data-slider-value="-14" data-slider-orientation="vertical" data-slider-selection="after"><br>
<label>Slider is unavailable:
<input type="checkbox" ng-model="sliderIsUnavailable">
</label><br>
</div>