1. Config Options
  2. Animation

Swapy has three types of animations: dynamic (default), spring, and none.

Dynamic (default)

createSwapy(container, {
  animation: 'dynamic'
})
A
B
C
D

Spring

createSwapy(container, {
  animation: 'spring'
})
A
B
C
D

None

createSwapy(container, {
  animation: 'none'
})
A
B
C
D