1Animation Principles

PropertyValueNotes
Propertiestransform, opacity, filter onlyGPU-composited — never width/height/margin/top/left
Micro-interactions150–200ms ease-outHover, click, focus feedback
Reveals300ms cubic-bezier(0.25, 0.46, 0.45, 0.94)Cards entering viewport
Page transitions250–300msExit: 250ms ease-in / Enter: 300ms ease-out
Section transitions500ms cubic-bezier(0.4, 0, 0.2, 1)Accent bar, large reveals
Stagger80ms per elementCards in a row
Accessibilityprefers-reduced-motionRespect system motion preferences

2Card Reveal — IntersectionObserver

Cards animate in from below as they enter the viewport, with 80ms stagger. Uses IntersectionObserver — disconnects after reveal.

Live Demo

Unified Platform

One dashboard for all club departments.

Real-Time Analytics

Live data feeds from every source.

Role-Based Access

Secure permissions for every stakeholder.

Smart Reporting

Auto-generated reports in seconds.

Cross-Dept Sync

Eliminate data silos across your club.

Mobile Ready

Full platform access on any device.

Duration: 300ms · Easing: cubic-bezier(0.25, 0.46, 0.45, 0.94) · Stagger: 80ms

3Red Accent Bar — Slide Header

Vertical red accent bar scales in from top, followed by content fade-in after 150ms delay. Click the button to replay.

Live Demo

Platform Overview

Total Sports Hub unifies every department — from the groundskeeper to the chairman — into one intelligent management platform.

Accent bar: 400ms cubic-bezier(0.4, 0, 0.2, 1) · Content: 300ms + 150ms delay

4Page Transition — SPA Navigation

Exit slides left and fades out (250ms). Enter slides in from right and fades in (300ms). Click the tabs to trigger the transition.

Live Demo
Dashboard Analytics Reports

Dashboard Overview

Welcome to the Total Sports Hub dashboard. Monitor all club operations from a single view.

Exit: 250ms ease-in · Enter: 300ms ease-out · Sequential (Promise-based)

5Navigation Active Indicator

Animated left-to-right underline on the active nav item. Hover reveals a partial underline. All using CSS pseudo-element on ::after.

Active: scaleX 0→1 · Hover: scaleX 0→0.5 · Duration: 200ms ease-out

6Hover Micro-Interactions

Cards lift on hover with elevated shadow and accent border. Buttons scale and brighten. All at 150ms ease-out.

Live Demo

Hover this card

Card: translateY(-4px) · Button: scale(1.03) brightness 1.1 · All: 150ms ease-out

7Timing Reference Table

ElementDurationEasingTrigger
Card reveal300mscubic-bezier(0.25,0.46,0.45,0.94)IntersectionObserver
Card hover150msease-out:hover
Button hover150msease-out:hover
Accent bar entry400mscubic-bezier(0.4,0,0.2,1)Class toggle
Content fade-in300ms + 150ms delayease-outAfter accent bar
Nav underline200msease-outClass / :hover
Page exit250msease-inRoute change
Page enter300msease-outAfter exit