new Draggable(element, parent [, options])
Creates a new Draggable instance.
Parameters:
Name | Type | Argument | Default | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
element |
HTMLElement | The element to be made draggable |
||||||||||||||||||||||||||||||||||||||||||||||||||||
parent |
HTMLElement | string | The parent element where the draggable container will be appended. Can be either an HTMLElement or a CSS selector string |
||||||||||||||||||||||||||||||||||||||||||||||||||||
options |
Object |
<optional> |
{} | Configuration options for the draggable element Properties
|
- Source:
Example
// Create a draggable element at the bottom-right corner const element = document.getElementById('my-element'); const parent = document.querySelector('.parent-container'); const draggable = new Draggable(element, parent, { bottom: 20, right: 20, handleColor: 'rgba(100, 150, 200, 0.7)' });
Methods
-
appendChild(element)
-
Appends an HTML element to the draggable container and updates its position.
Parameters:
Name Type Description element
HTMLElement The element to append to the draggable container
- Source:
Returns:
This instance for method chaining
- Type
- Draggable
-
hide()
-
Hides the draggable element.
- Source:
Returns:
This instance for method chaining
- Type
- Draggable
-
setHandleColor(color)
-
Changes the handle color.
Parameters:
Name Type Description color
string New color for the handle (hex, rgb, rgba)
- Source:
Returns:
This instance for method chaining
- Type
- Draggable
-
show()
-
Shows the draggable element if it's hidden.
- Source:
Returns:
This instance for method chaining
- Type
- Draggable
-
updatePosition()
-
Updates the position of the draggable container based on its current options and parent dimensions. This method is called automatically on window resize and when elements are appended.
- Source:
Returns:
This instance for method chaining
- Type
- Draggable