2.0.2 • Published 2 years ago

@hjbdev/vue-flip-toolkit v2.0.2

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

@hjbdev/vue-flip-toolkit

A fork of @mattrothenberg's vue-flip-toolkit, ported from the incredible react-flip-toolkit, developed by @aholachek

This fork is functionally exactly the same as vue-flip-toolkit, I've ported it to Vue 3 and updated the build tools to use Vite. All the "Source" links in this README have been redirected to the original vue-flip-toolkit repo.

I'll work on adding some of the missing props in at some point™

Quick Start

yarn add @hjbdev/vue-flip-toolkit

Wrap the components you wish to animate with a single Flipper component that has a flipKey prop. This prop must change every time you want an animation to happen.

Wrap elements that should be animated with Flipped components that have a flipId prop matching them across renders.

A basic example can be found here: https://codesandbox.io/s/m354w1mmp9

What's in this library?

This library strives to imitate its parent, react-flip-toolkit, as closely as possible. It thus exports the following two components that you can use in your Vue applications. For the sake of brevity, I've lifted descriptions/verbiage from the README of react-flip-toolkit, indicated via blockquotes.

Flipper.vue

The parent wrapper component that contains all the elements to be animated. You'll most typically need only one of these per page. Read more –>

Props

propdefaulttypedetails
classNamestringA class that will apply to the div rendered by Flipper
flipKey (required)string, number, booleanChanging this tells vue-flip-toolkit to transition child elements wrapped in Flipped components.
spring"noWobble"string, objectProvide a string or referencing one of the spring presets — noWobble, veryGentle, gentle, wobbly, or stiff. Otherwise, pass a custom spring object
staggerConfig{}objectProvide configuration for staggered Flipped children.

Flipped.vue

Wraps an element that should be animated.

Props

propdefaulttypedetails
flipId (required)stringUse this to tell vue-flip-toolkit how elements should be matched across renders so they can be animated.
inverseFlipIdstringRefer to the id of the parent Flipped container whose transform you want to cancel out. If this prop is provided, the Flipped component will become a limited version of itself that is only responsible for cancelling out its parent transform. It will read from any provided transform props and will ignore all other props (besides inverseFlipId.)
staggerstringProvide a natural, spring-based staggering effect in which the spring easing of each item is pinned to the previous one's movement. If you want to get more granular, you can provide a string key and the element will be staggered with other elements with the same key.
delayUntilstringDelay an animation by providing a reference to another Flipped component that it should wait for before animating (the other Flipped component should have a stagger delay as that is the only use case in which this prop is necessary.)
shouldInvertfunctionA function provided with the current and previous decisionData props passed down by the Flipper component. Returns a boolean indicating whether to apply inverted transforms to all Flipped children that request it via an inverseFlipId.
shouldFlipfunctionA function provided with the current and previous decisionData props passed down by the Flipper component. Returns a boolean to indicate whether a Flipped component should animate at that particular moment or not.
opacityfalseboolean
scalefalsebooleanTween scaleX and scaleY
translatefalsebooleanTween translateX and translateY

Events

eventNameargsdetails
@on-start{el: DOMElement, id: String}Emitted when the flipped animation begins.
@on-complete{el: DOMElement, id: String}Emitted when the flipped animation begins.

Cool, so how do I use it?

Install the library

yarn add vue-flip-toolkit

Import the respective components.

import { Flipper, Flipped } from "vue-flip-toolkit";

Register the components.

// Example.vue
<script>
export default {
  components: {
    Flipped,
    Flipper
  }
};
</script>

OK, time for some examples.

You got it.

1) Simple, Expanding Div Animation

Source

2) Two Divs

Source

3) List Shuffle Animation

Source

4) List Shuffle Animation (Staggered)

Source

5) Accordion (Staggered)

Source

6) Scale Animation + Anime.js

Source

7) Material Design inspired animation

Source

8) Vue Router Example

This example is very much a WIP. Nonetheless, it illustrates at a high-level how to use vue-flip-toolkit with vue-router, as well as hook into the @on-complete and @on-start events.

Source

2.0.2

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago