onSettle
Executes a function when the dragged target has completely stopped moving when released after a grab.
Accepts
A Function
whose first argument returns the draggable itself
Default
noop
onSettle code example
import { createDraggable, utils } from 'animejs';
const [ $value ] = utils.$('.value');
let stops = 0;
createDraggable('.square', {
container: '.grid',
onSettle: () => $value.textContent = ++stops
});
<div class="large padded grid square-grid">
<pre class="large log row">
<span class="label">stops</span>
<span class="value">0</span>
</pre>
<div class="square draggable"></div>
</div>