Skip to content

Files

Latest commit

c518fb1 · Sep 7, 2018

History

History
This branch is 199 commits behind Shopify/draggable:main.

SwapAnimation

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Sep 7, 2018
Aug 2, 2018
Mar 2, 2018

SwapAnimation

The swap animation plugin currently only works with Sortable. It adds a swap animation on sortable:sorted, and animates both source and over via translate3d. It is currently possible to change the duration and the easing function of the animation.

This plugin is not included by default, so make sure to import it before using.

Import

import { Plugins } from '@shopify/draggable';
import SwapAnimation from '@shopify/draggable/lib/plugins/swap-animation';
<script src="https://cdn.jsdelivr.net/npm/@shopify/draggable@1.0.0-beta.8/lib/plugins.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/draggable@1.0.0-beta.8/lib/plugins/swap-animation.js"></script>

API

new SwapAnimation(draggable: Draggable): SwapAnimation
To create a swap animation plugin instance.

Options

duration {Integer}
The duration option allows you to specify the animation during for a single swap. Default: 150

easingFunction {String}
The easing option allows you to specify an animation easing function. Default: 'ease-in-out'

horizontal {Boolean} The horizontal option allows you to set the elements to animate horizontally. Default: false

Examples

import { Sortable, Plugins } from '@shopify/draggable';

const sortable = new Sortable(document.querySelectorAll('ul'), {
  draggable: 'li',
  swapAnimation: {
    duration: 200,
    easingFunction: 'ease-in-out',
    horizontal: true
  },
  plugins: [Plugins.SwapAnimation]
});

Plans

  • Add support for staggering animations
  • Find cross-container animation solution
  • Add support for Swappable and Droppable

Caveats

  • Only works within same container
  • Animations don't stagger
  • Only works with Sortable