@tamagui/animations-motion
v2.0.0-rc.29
Published
Motion animation driver for Tamagui, powered by the [Motion](https://motion.dev) library and the Web Animations API (WAAPI).
Readme
@tamagui/animations-motion
Motion animation driver for Tamagui, powered by the Motion library and the Web Animations API (WAAPI).
Features
- Hybrid Engine: Combines JavaScript animations with native WAAPI for GPU-accelerated performance
- Spring Physics: Natural, physics-based animations with intuitive
damping,stiffness, andmassparameters - Independent Transforms: Animate
x,y,scale,rotateproperties separately with different configurations - Compositor Thread: Runs animations smoothly even when the main thread is busy
- Web-Only: Optimized for modern web browsers with WAAPI support
Installation
yarn add @tamagui/animations-motion motionUsage
Add to your Tamagui configuration:
import { createAnimations } from '@tamagui/animations-motion'
import { createTamagui } from 'tamagui'
export default createTamagui({
animations: createAnimations({
bouncy: {
type: 'spring',
damping: 9,
mass: 0.9,
stiffness: 150,
},
quick: {
type: 'spring',
damping: 20,
mass: 1.2,
stiffness: 250,
},
'100ms': {
duration: 100,
},
}),
// ...
})Animation Types
Spring Animations
{
type: 'spring',
damping: 10, // Higher = less bouncy
stiffness: 100, // Higher = faster
mass: 1, // Higher = more inertia
}Tween Animations
{
duration: 200, // Duration in milliseconds
}Documentation
For complete documentation, see the Tamagui Animations docs.
