Progressive Odometer Demo

Multiple independent odometer instances with leaky integrator animation

50%
1c ($0.01)
Display: $2500.00Target: $2500.00Actual Delta: 0c

Jacks or Better - Progressive

Loading theme...
Display: $2500.00Target: $2500.00Delta: 1 pennies

Component Usage

// Basic odometer (no theme)
import { OdometerDisplay } from "@/components/odometer";

<OdometerDisplay
  targetValue={12345.67}
  initialValue={0}
  scale={0.5}
/>

// Themed odometer (with background & frame)
import { ThemedOdometer } from "@/components/odometer";

<ThemedOdometer
  themePath="/odometer-assets/themes/1/1/1920x1080"
  backgroundImage="01-Background_Jacks.png"
  frameImage="01-Frame.png"
  targetValue={12345.67}
  scale={0.5}
/>