0.0.5 • Published 4 years ago

svelte-layout-aware-transitions v0.0.5

Weekly downloads
2
License
ISC
Repository
github
Last release
4 years ago

Svelte Layout Aware Transitions DEMO

Install

npm i svelte-layout-aware-transitions

Use

<script>
  import {
    slideLeft,
    flyLeft,

    slideRight,
    flyRight,

    slideDown,
    flyDown,

    slideUp,
    flyUp
  } from "svelte-layout-aware-transitions";
</script>

<div transition:slideLeft={opts}></div>

Why?

Transform based transitions are great, they're GPU accelerated and all. But sometimes you need to incorporate an element to a layout with a transition that affects also the other elements in the layout. Sometimes you can achieve this using animate but sometimes not (I think)

Notes

These transitions make use of negative margins, and sets the display to relative and the z-index to -1 during the transition

Fly transitions are equal to slide but adding the fade effect.

All transitions accepts the same params with the same defaults:

  duration: 400
  delay: 0
  easing: cubicOut // (see svelte/easing)

TODO

Add more transitions

Change the name to a better (shorter) one

0.0.3

4 years ago

0.0.2

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.1

4 years ago