Pitsi UI
  • Home
  • Docs
1
1
Sections
  • Get Started
  • Components
  • Animations
  • MCP Server
  • Changelog
Get Started
  • Installation
  • CLI
  • llms.txt
Components
  • Accordion
  • Alert Dialog
  • Alert
  • Aspect Ratio
  • Avatar
  • Badge
  • Breadcrumb
  • Button Group
  • Button
  • Card
  • Carousel
  • Checkbox
  • Collapsible
  • Combobox
  • Command
  • Container
  • Context Menu
  • Data Table
  • Dialog
  • Drawer
  • Dropdown Menu
  • Empty
  • Field
  • Flex
  • Form
  • Grid
  • Hero Button
  • Hover Card
  • Input Group
  • Input OTP
  • Input
  • Item
  • Kbd
  • Label
  • Menubar
  • Native Select
  • Navigation Menu
  • Pagination
  • Popover
  • Progress
  • Radio Group
  • Resizable
  • Responsive
  • Scroll Area
  • Segmented Control
  • Select
  • Separator
  • Sheet
  • Sidebar
  • Skeleton
  • Slider
  • Sonner
  • Spacer
  • Spinner
  • Squircle
  • Switch
  • Table
  • Tabs
  • Textarea
  • Theme Toggle
  • Toggle Group
  • Toggle
  • Tooltip
  • Typography
  • Unicorn Wrapper
Animations
  • Background Image Parallax
  • Card Swipe Carousel
  • Cards Parallax
  • Parallax Scroll
  • Perspective Carousel
  • Perspective Section Transition
  • Scroll Expand
  • Scroll Fade
  • Scroll Scale
  • Slide Down
  • Slide Up
  • Smooth Parallax Scroll
  • Smooth Scroll
  • Sticky Footer
  • Text Along Path
  • Text Gradient Opacity
  • Text Parallax
  • Transforms 3d
  • Zoom Parallax

Scroll Scale

PreviousNext

A scroll scale animation component.

"use client"

import {
  ScrollScaleCard,
  ScrollScaleContainer,
} from "@/components/animations/scroll-scale/scroll-scale"

const cards = [
  {
    id: 1,
    image: "https://skiper-ui.com/images/lummi/img14.png",
  },
  {
    id: 2,
    image: "https://skiper-ui.com/images/lummi/img15.png",
  },
  {
    id: 3,
    image: "https://skiper-ui.com/images/lummi/img29.png",
  },
  {
    id: 4,
    image: "https://skiper-ui.com/images/lummi/img21.png",
  },
  {
    id: 5,
    image: "https://skiper-ui.com/images/lummi/img27.png",
  },
]

export function ScrollScaleDemo() {
  return (
    <div className="h-full w-full">
      <ScrollScaleContainer cardCount={cards.length}>
        {cards.map((card, index) => (
          <ScrollScaleCard
            key={card.id}
            index={index}
            src={card.image}
            alt={`Card ${card.id}`}
          />
        ))}
      </ScrollScaleContainer>
    </div>
  )
}

Installation

pnpm dlx pitsi@latest add scroll-scale

Usage

import { ScrollScale } from "@/components/animations/scroll-scale"
Scroll FadeSlide Down

On This Page

InstallationUsage

© 2025 pitsi/ui. All rights reserved.

Sign In