React Pixel Motion
A lightweight React component for creating smooth, pixelated sprite animations. Perfect for games, retro-style interfaces, and pixel art animations. The library is built with TypeScript and React, the npm package is available at npmjs.com/package/@ga1az/react-pixel-motion.
Features
- 🎮 Easy-to-use React component
- 🖼️ Support for sprite sheets and individual frames
- ⚡ Lightweight with minimal dependencies
- 📱 Responsive and customizable
- 🧩 TypeScript support
Installation
npm install @ga1az/react-pixel-motion# oryarn add @ga1az/react-pixel-motion# orpnpm add @ga1az/react-pixel-motion# orbun add @ga1az/react-pixel-motion
Quick Example
import { PixelMotion } from '@ga1az/react-pixel-motion';
function App() { return ( <PixelMotion src="/path/to/sprite-sheet.png" width={24} // Width of each frame in pixels height={31} // Height of each frame in pixels frameCount={3} // Total number of frames in the sprite sheet fps={10} // Frames per second for the animation scale={5} // Scale factor for the sprite startFrame={0} // Initial frame to start the animation loop={true} // Whether the animation should loop shouldAnimate={true} // Whether the animation should play direction="horizontal" // Direction of the sprite sheet /> );}