0.2.0 ā€¢ Published 1 month ago

hero-motion v0.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

Hero motion

NPM version

šŸŒŠ A shared layout animations for vue like framer motion, use layoutId prop and components will animate from one to another.

Features

šŸŽ Smooth animations based on @vueuse/motion

āœØ Written in TypeScript

šŸ™Œ Easy to use

āœ… Support most of the @vueuse/motion's props

Installation

npm install hero-motion

Usage

HeroProvider

Suggest to use this component wrap your hole project, this provider will provide private context for Hero component.

<script setup>
import { HeroProvider } from 'hero-motion'
</script>

<template>
  <HeroProvider>
    <RouterView />
  </HeroProvider>
</template>

Hero

You can use hero with both component and composable method.

Component

<script setup>
import { Hero } from 'hero-motion'
</script>

<template>
  <Hero as="div" layout-id="ID" />
</template>

Composable

<script setup>
import { ref } from 'vue'
import { useHero } from 'hero-motion'

const domRef = ref()

useHero(domRef, {
  layoutId: 'LAYOUT_ID'
})
</script>

<template>
  <div ref="domRef" />
</template>

Props

props.as

  • Type: string
  • Default: 'div'

props.layoutId

  • Type: string | number
  • Default: undefined
  • Required: true

props.ignore

  • Type: string[]
  • Default: []

props.transition

  • Type: Transition
  • Default: undefined

Transition props can be used in both HeroProvider and Hero.

The configuration defined in HeroProvider will be used as global default value, and you do not need to re-declare it on each Hero components.

type Transition = {
  delay: number
  repeat: number
  repeatDelay: number
  repeatType: 'loop' | 'mirror' | 'reverse'
  type: 'spring' | 'keyframes'
  stiffness: number
  damping: number
  mass: number
  bounce: number
  duration: number
  ease: string
}

Example:

<Hero
  as="div"
  layout-id="cursor"
  :ignore="['width']"
  :transition="{
    duration: 1000,
    type: 'keyframes',
    bounce: 0
  }"
/>

License

MIT License Ā© 2024-PRESENT Tamago

0.2.0

1 month ago

0.1.0

2 months ago

0.0.11

7 months ago

0.0.10

7 months ago

0.0.9

7 months ago

0.0.8

7 months ago

0.0.7

7 months ago

0.0.6

7 months ago

0.0.5

7 months ago

0.0.3

7 months ago

0.0.2

7 months ago

0.0.1

7 months ago