Tiny vanilla JS library that enables drag'n'drop interactions to a user of your website. By implementing this library a user is able to drag'n'drop elements on user-defined drop regions. It works both on desktop (using mouse interface) and mobile devices (using touch interface). It's only ~2.35kB minified and gzipped
See the library in action at the demo page: Dragster.js demo page
You can install this library in two different ways:
-
Clone this repository on Github,
-
Install using npm (Node.js dependencies manager) with following command:
npm install dragsterjs
-
Install using bower (frontend dependencies manager) with following command:
bower install dragsterjs
You can start using it preparing following HTML code:
<div class="dragster-region">
<div class="dragster-block"></div>
<div class="dragster-block"></div>
<div class="dragster-block"></div>
</div>
Then add following JS code:
var dragster = new window.Dragster({
elementSelector: '.dragster-block',
regionSelector: '.dragster-region'
});
And start having fun with dragging elements on the website.
If you want to replace elements instead of moving them between regions you can initialize Dragster.js library with an option replaceElements: true
:
var dragster = new window.Dragster({
elementSelector: '.dragster-block',
regionSelector: '.dragster-region',
replaceElements: true
});
If you don't want to update regions height value when dragging and dropping element on a region you can initialize Dragster.js library with an option updateRegionsHeight: false
:
var dragster = new window.Dragster({
elementSelector: '.dragster-block',
regionSelector: '.dragster-region',
updateRegionsHeight: false
});
If you have an app where elements are added dynamically, you can update the draggable elements list on demand:
var dragster = new window.Dragster({
elementSelector: '.dragster-block',
regionSelector: '.dragster-region'
});
dragster.update();
Imagine you have a shopping cart with a list of products. You want to allow dropping multiple items into the shopping cart without removing an item from the list of available shop items.
var dragster = new window.Dragster({
elementSelector: '.dragster-block',
regionSelector: '.dragster-region',
dragOnlyRegionCssClass: 'dragster-region--drag-only',
cloneElements: true
});
List of properties:
It is a CSS selector to find all the elements on the page that should be draggable. Default value: '.dragster-block'
It is a CSS selector to find all the regions where elements can be dragged onto and where all the drag'n'drop functionality works as expected.
Default value: '.dragster-region'
Indidator stating if dropped element should switch position with drop target.
It takes either true
or false
value. Default value: false
.
Indicator stating if dropped element should be copied into a new position.
It takes either true
or false
value. Default value: false
.
It is indicator whether regions should update their height according to the number of elements visible in the region.
It takes either true
or false
value. Default value: true
.
Tell the dragster to not to resize the regions below provided value. Default value: 60
.
Tell the dragster to scroll window while dragging an element. Default value: false
.
The drag-only region CSS class name. Used to identify regions. Default value: 'dragster-region--drag-only'
.
The flag stating the elements can be cloned from region to region. Requires dragOnlyRegionCssClass
to be applied in the HTML markup of a page. Default value: false
.
By default all draggable elements are wrapped in a wrapper <div>
, by settings this variable to false
this behavior can be disabled. This can sometimes be useful when using the script in frameworks like Angular or such.
IMPORTANT
If you put this value to false
, you MUST do the wrapping of the elements yourself.
A wrapper container looks like this <div draggable="true" class="dragster-draggable"> ... </div>
These properties allow a developer to control the behaviour of dragster.js library using callbacks.
All the callbacks takes one param - the event object, provided by Dragster.js library.
When callback returns false
value then the dragging action is cancelled.
Be careful with these callbacks as it might cause unexpected behaviour of dragged elements.
Before drag start callback. Can prevent from dragging an element.
After drag start callback.
Before drag move callback. Can prevent from dropping an element.
After drag move callback.
Before drag end callback. Can prevent from dropping an element.
After drag end callback.
After drop callback.
List of methods ready to be used by any webdeveloper:
Updates a reference to draggable elements. For example, when user adds a new element to any of droppable regions then running update
method makes a new element draggable as well.