使用jquery拖动div

时间:2014-08-22 13:13:13

标签: jquery html css

我试图在不使用jQuery UI的情况下使div可拖动。

HTML

<div class="wrapper">
  <div class="toddler"></div>
</div>

脚本

$.fn.slider = function () {
$(this).on("mousedown", function () {
    $dragging = true;
});

$(this).on("mouseup", function () {
    $dragging = null;
});

$(this).on("mousemove", function () {
    if ($dragging) {
        $(this).offset({
            left: $(this).pageX
        });
    }
});
};

$(".toddler").slider();

my fiddle

但我的代码不起作用。怎么了?如何使它工作?

2 个答案:

答案 0 :(得分:2)

(function($) {
$.fn.drags = function(opt) {

    opt = $.extend({handle:"",cursor:"move"}, opt);

    if(opt.handle === "") {
        var $el = this;
    } else {
        var $el = this.find(opt.handle);
    }

    return $el.css('cursor', opt.cursor).on("mousedown", function(e) {
        if(opt.handle === "") {
            var $drag = $(this).addClass('draggable');
        } else {
            var $drag = $(this).addClass('active-handle').parent().addClass('draggable');
        }
        var z_idx = $drag.css('z-index'),
            drg_h = $drag.outerHeight(),
            drg_w = $drag.outerWidth(),
            pos_y = $drag.offset().top + drg_h - e.pageY,
            pos_x = $drag.offset().left + drg_w - e.pageX;
        $drag.css('z-index', 1000).parents().on("mousemove", function(e) {
            $('.draggable').offset({
                top:e.pageY + pos_y - drg_h,
                left:e.pageX + pos_x - drg_w
            }).on("mouseup", function() {
                $(this).removeClass('draggable').css('z-index', z_idx);
            });
        });
        e.preventDefault(); // disable selection
    }).on("mouseup", function() {
        if(opt.handle === "") {
            $(this).removeClass('draggable');
        } else {
            $(this).removeClass('active-handle').parent().removeClass('draggable');
        }
    });

}
})(jQuery);

用法:

$('div').drags();

http://css-tricks.com/snippets/jquery/draggable-without-jquery-ui/

答案 1 :(得分:1)

使用jqueryUI总是更好。您可以在没有它的情况下拖动,但它不会提供只能由jqueryUI提供的平滑度。

实施例

Link 1

Link 2

因此我建议使用任何拖动插件来为您的功能提供平滑度。

使用的功能

$(function() {
$('body').on('mousedown', 'div', function() {
    $(this).addClass('draggable').parents().on('mousemove', function(e) {
        $('.draggable').offset({
            top: e.pageY - $('.draggable').outerHeight() / 2,
            left: e.pageX - $('.draggable').outerWidth() / 2
        }).on('mouseup', function() {
            $(this).removeClass('draggable');
        });
    });
    e.preventDefault();
}).on('mouseup', function() {
    $('.draggable').removeClass('draggable');
});
});