minVelocity
Specifies the minimum velocity to apply to the dragged element after release.
Accepts
- A
Number
greater than or equal to0
- A
Function
that returns aNumber
greater than or equal to0
When defined using a Function
, the value will be automatically refreshed every time the container or target element is resized.
It can also be refreshed manually using the refresh()
method.
Default
0
minVelocity code example
import { createDraggable } from 'animejs';
createDraggable('.square', {
container: '.grid',
minVelocity: 0,
});
createDraggable('.circle', {
container: '.grid',
minVelocity: 10,
});
<div class="large centered grid square-grid">
<div class="square draggable"></div>
<div class="circle draggable"></div>
</div>