使jQuery UI可拖动元素只能向下拖动

时间:2013-08-03 02:48:59

标签: javascript jquery jquery-ui jquery-ui-draggable

将jQuery UI可拖动元素修复到轴非常简单。您只需设置轴选项,但仍允许两个拖动方向。

如何将拖动限制为仅一个方向(向下)?

$('.settings').draggable({axis:'y'});使.settings可以上下拖动,但我怎样才能让它只向下工作呢?

1 个答案:

答案 0 :(得分:1)

$('#repel').mousemove(function () {
    var z = $(window).scrollTop();
    var o = $('#repel').offset().top;
    var h = $('#repel').height();
        $("#containment-wrapper").css({
            top:  o + h -2000
        });
    if (z < 10) {
        $("#containment-wrapper").css({
            top: -850
        });
    } else {
        $("#containment-wrapper").css({
            top:  o + h -2000
        });
    }
});