Your Image
25

Scroll Progress

PreviousNext

A customizable scroll progress bar with gradient variants, sizes, and optional percentage display.

Installation

pnpm dlx shadcn@latest add https://aliimam.in/r/scroll-progress.json

Usage

import { ScrollProgress } from "@/components/ui/scroll-progress"
Basic
<ScrollProgress />
 
---
 
Bottom Positioned Progress Bar
<ScrollProgress position="bottom" />
 
---
 
Custom Size & Rounded Corners
<ScrollProgress size="lg" rounded="full" />
 
---
 
Gradient Variants
<ScrollProgress variant="rainbow" />
<ScrollProgress variant="ocean" />
<ScrollProgress variant="sunset" />
 
---
 
With Glow Effect
<ScrollProgress variant="neon" glow="lg" />
 
---
 
Show Scroll Percentage
<ScrollProgress showPercentage />
 
---
 
Centered Percentage Indicator
<ScrollProgress
  showPercentage
  percentagePosition="center"
/>
 
---
 
Custom Gradient
<ScrollProgress
  variant="custom"
  customGradient="bg-gradient-to-r from-fuchsia-500 via-violet-500 to-cyan-500"
/>
 
---
 
Custom Spring Animation
<ScrollProgress
  springConfig={{
    stiffness: 120,
    damping: 20,
  }}
/>
 
---
 
Scroll Tracking Inside a Container
const ref = useRef<HTMLDivElement>(null)
 
return (
  <div ref={ref} className="h-[400px] overflow-y-auto">
    <ScrollProgress container={ref} />
    {/* scrollable content */}
  </div>
) 

Props

ScrollProgress Props

PropTypeDefault
variant"default" | "rainbow" | "ocean" | "sunset" | "forest" | "monochrome" | "neon" | "fire" | "ice" | "gold" | "solid" | "custom""default"
size"xs" | "sm" | "default" | "lg" | "xl" | "2xl""default"
position"top" | "bottom""top"
rounded"none" | "sm" | "default" | "lg" | "xl" | "full""none"
glow"none" | "sm" | "default" | "lg" | "xl""none"
classNamestringundefined
customGradientstringundefined
springConfig{ stiffness?: number; damping?: number; restDelta?: number }{ stiffness: 200, damping: 50, restDelta: 0.001 }
showPercentagebooleanfalse
percentagePosition"left" | "right" | "center""right"
containerReact.RefObject<HTMLElement>undefined

AI

Listining

Zindagi Tere Naam (From "Yodha")

Vishal Mishra, Kaushal Kishore