Last active
August 29, 2015 13:57
-
-
Save steelywing/9360933 to your computer and use it in GitHub Desktop.
jQuery draggable plugin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// jQuery draggable plugin | |
(function($) { | |
$.fn.draggable = function(options) { | |
var $handle = this, | |
$draggable = this; | |
options = $.extend({}, { | |
handle: null, | |
// allow children to be a handle | |
handleChildren: true, | |
cursor: 'move' | |
}, options); | |
if( options.handle ) { | |
$handle = $(options.handle); | |
} | |
$handle | |
.css({ | |
'-webkit-user-select': 'none', | |
'-moz-user-select': 'none', | |
'-ms-user-select': 'none', | |
'user-select': 'none', | |
'cursor': options.cursor | |
}) | |
.on("mousedown", function(e) { | |
var x = $draggable.offset().left - e.pageX, | |
y = $draggable.offset().top - e.pageY, | |
z = $draggable.css('z-index'); | |
// if click on children and disabled handle children | |
if ( !options.handleChildren && e.target != this ) { | |
return; | |
} | |
$draggable.css('z-index', 100000); | |
$(document.documentElement) | |
.on('mousemove.draggable', function(e) { | |
$draggable.offset({ | |
left: x + e.pageX, | |
top: y + e.pageY | |
}); | |
}) | |
.one('mouseup', function() { | |
$(this).off('mousemove.draggable'); | |
$draggable.css('z-index', z); | |
}); | |
// disable selection | |
// e.preventDefault(); | |
}); | |
return this; | |
}; | |
})(jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment