containerPadding
Specifies the container's padding in pixels.
Accepts
Number
Array<Number>
([top, right, bottom, left]
)- A
Function
that returnsArray<Number>
([top, right, bottom, left]
)
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
containerPadding code example
import { createDraggable } from 'animejs';
createDraggable('.square', {
container: '.grid',
containerPadding: [ 16, 32, -16, 64], // top, right, bottom, left
scrollThreshold: 0,
});
<div class="large centered padded show-bounds grid square-grid">
<div class="square draggable"></div>
</div>