我正在使用http://refreshless.com/nouislider/
中的滚动条$("#sample-minimal").noUiSlider({
range: [0, 100]
,start: [20, 80]
,connect: true
});
一切都很好。
我希望在鼠标滚动后立即将滚动条移动到另一个位置时触发事件。
$("#sample-minimal").mouseup(function() {
//works fine, but it doesn't fire if the mouse was down on the scroller, pulled to another position OUT OF THE SCROLLER and then mouseup
//it works only if the mouse is above the scroller
});
所以我想要的实际上不是sample-minimal
的mouseup事件,而是在sample-minimal
的mousedown触发的两页事件中,鼠标在页面的任何部分都有。因此,它实际上具有与滚动条相同的行为。
如何制作?
谢谢。