Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

readme.md

Animating React Apps

React application demonstrating CSS animations and transitions using react-transition-group.

Overview

This project showcases various animation techniques in React including CSS transitions, mounting/unmounting animations, and animated lists.

Tech Stack

Package Version
React 19.2.3
React DOM 19.2.3
React Scripts 5.0.1
react-transition-group 4.4.5

Setup

# Install dependencies
npm install

Development

# Start development server
npm start

The app runs at http://localhost:3000

Build

# Create production build
npm run build

Features

  • CSS Transitions with Transition component
  • CSSTransition for class-based animations
  • TransitionGroup for animated lists
  • Modal animations
  • Backdrop animations

Project Structure

src/
├── components/
│   ├── Backdrop/    # Backdrop component
│   ├── List/        # Animated list
│   └── Modal/       # Modal with animation
├── App.js           # Root component
└── index.js         # Entry point