将jQuery UI可拖动元素修复到轴非常简单。您只需设置轴选项,但仍允许两个拖动方向。
如何将拖动限制为仅一个方向(向下)?
$('.settings').draggable({axis:'y'});
使.settings
可以上下拖动,但我怎样才能让它只向下工作呢?
答案 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
});
}
});