The sort animation plugin currently only works with Sortable
. It adds sort animation on sortable:sorted
with both horizontal and vertical within grid layout,
and animates all sorted elements via translate3d
. It is currently possible to change the duration and
the easing function of the animation.
It different with SwapAnimation plugin because SwapAnimation only support horizontal or vertical layout.
This plugin is not included by default, so make sure to import it before using.
NOTE: Don't use this plugin with SwapAnimation plugin to avoid conflict.
- ES6:
import { Sortable, Plugins } from '@hnrq/draggable';
// Or
// import Sortable from '@hnrq/draggable/lib/sortable';
// import SortAnimation from '@hnrq/draggable/lib/plugins/sort-animation';
const sortable = new Sortable(document.querySelectorAll('ul'), {
draggable: 'li',
sortAnimation: {
duration: 200,
easingFunction: 'ease-in-out',
},
plugins: [Plugins.SortAnimation], // Or [SortAnimation]
});
- Browser (All plugins bundle):
<script src="https://cdn.jsdelivr.net/npm/@hnrq/[email protected]/lib/draggable.bundle.js"></script>
<script>
const sortable = new Draggable.Sortable(document.querySelectorAll('ul'), {
draggable: 'li',
sortAnimation: {
duration: 200,
easingFunction: 'ease-in-out',
},
plugins: [Draggable.Plugins.SortAnimation],
});
</script>
- Browser (Standalone):
<script src="https://cdn.jsdelivr.net/npm/@hnrq/[email protected]/lib/sortable.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@hnrq/[email protected]/lib/plugins/sort-animation.js"></script>
<script>
const sortable = new Sortable.default(document.querySelectorAll('ul'), {
draggable: 'li',
sortAnimation: {
duration: 200,
easingFunction: 'ease-in-out',
},
plugins: [SortAnimation.default],
});
</script>
new SortAnimation(draggable: Draggable): SortAnimation
To create a sort animation plugin instance.
duration {Integer}
The duration option allows you to specify the animation during for a single sort. Default: 150
easingFunction {String}
The easing option allows you to specify an animation easing function. Default: 'ease-in-out'
import { Sortable, Plugins } from '@hnrq/draggable';
const sortable = new Sortable(document.querySelectorAll('ul'), {
draggable: 'li',
sortAnimation: {
duration: 200,
easingFunction: 'ease-in-out',
},
plugins: [Plugins.SortAnimation],
});
- Only works within same container
- Animations don't stagger
- Only works with
Sortable