modifier
Defines a Modifier function that alter of modify the value of either both axes or one specific axis.
Accepts
Default
noop
modifier code example
import { createDraggable, utils } from 'animejs';
createDraggable('.square', {
modifier: utils.wrap(-32, 32), // Global to both x and y
x: { modifier: utils.wrap(-128, 128) }, // Specific to x
});
<div class="large grid centered square-grid">
<div class="square draggable"></div>
</div>