Skip to content

Instantly share code, notes, and snippets.

@keriati
Created July 30, 2012 12:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save keriati/3206481 to your computer and use it in GitHub Desktop.
Save keriati/3206481 to your computer and use it in GitHub Desktop.
Draggable without jQuery UI
(function($) {
$.fn.drags = function(opt) {
var $el;
opt = $.extend({handle: '', cursor: 'move', windowLock: true}, opt);
$el = ('' === opt.handle) ? this : this.find(opt.handle);
return $el
.css('cursor', opt.cursor)
.on('mousedown', function(e) {
var $this = $(this),
$drag = ("" === opt.handle) ? $this.addClass('draggable') : $this.addClass('active-handle').parent().addClass('draggable'),
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) {
var top = e.pageY + pos_y - drg_h,
left = e.pageX + pos_x - drg_w,
ch, cw;
if(true === opt.windowLock) {
ch = $(window).height();
cw = $(window).width();
top = (top < 0) ? 0 : top;
top = (top + drg_h > ch) ? ch - drg_h : top;
left = (left < 0) ? 0 : left;
left = (left + drg_w > cw) ? cw - drg_w : left;
}
$('.draggable')
.offset({
top: top,
left: left
})
.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);
@arakno
Copy link

arakno commented Jan 15, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment