Dragging.js Element Dragging Effects Examples

A tiny jQuery plugin that applies configurable transition effects to your elements while dragging them.

						
$('#element1').Dragging();
						
					
						
$('#element2').Dragging({
	horizontal: false
});
						
					
						
$('#element3').Dragging({
	speed: 600
	rotate: true
});
						
					
						
$('#element4').Dragging({
	speed: 400
	vertical: false
});