Skip to content

alongbao/draggable.js

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

draggable.js

Make DOM elements draggable and re-layout.

##Usage

The DOM structure is simple, put all elements you want it be draggable in a container. Here is an example:

<div id="dragBox">
	<div>1</div>
	<div>2</div>
	<div>3</div>
	<div>4</div>
	<div>5</div>
	<div>6</div>
</div>

Simply use Draggable function like so:

Draggable(document.getElementById('dragBox'));

##Config Options The second parameter of the Draggable function is an object of config options:

  • positioned Boolean ( default: true ) - set the draggable elements positioned
  • onDrag Function - runs when start drag
  • onDrop Function - runs when end drag

##Example

var box = document.getElementById('dragBox');

Draggable(box, {
	positioned: true,
	onDrag: function(fromIndex, cloneElem){},
	onDrop: function(toIndex, dropElem){}
});

##Demo http://oodzchen.com/lab/draggablejs/

##Browser Support Compatible with major desktop browsers (Firefox, Chrome, IE8+).

##License Copyright (c) 2015 Lin Chen Licensed under the The MIT License (MIT)

About

Make DOM elements draggable and re-layout.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 84.4%
  • HTML 15.6%