Command Palette

Search for a command to run...

Docs
Container Text Scroll

Container Text Scroll

Scroll-triggered text animation component with smooth parallax effects using Framer Motion

Loading...

Installation

Usage

import { ContainerTextScroll } from "@/components/ruixen/container-text-scroll";
 
export default function App() {
  return (
    <ContainerTextScroll
      titleComponent={
        <h1 className="text-4xl font-bold">Scroll to see the magic</h1>
      }
    >
      <div className="h-screen bg-gradient-to-b from-blue-500 to-purple-600">
        <p className="text-white text-xl p-8">
          This content will animate as you scroll
        </p>
      </div>
    </ContainerTextScroll>
  );
}

Props

PropTypeDefaultDescription
titleComponentReactNode-Title element to animate
childrenReactNode-Content to display
classNamestring-Additional CSS classes

Features

  • Scroll-Triggered Animation: Responds to scroll position
  • Framer Motion Integration: Smooth, performant animations
  • Parallax Effects: Multi-layer animation depths
  • Responsive Design: Works on all screen sizes
  • Customizable: Easy to modify animation parameters
  • TypeScript Support: Full type safety

Animation Behavior

  • Title Animation: Scales and transforms based on scroll
  • Content Reveal: Smooth content appearance
  • Parallax Scrolling: Different elements move at different speeds
  • Smooth Transitions: Eased animation curves

Customization

You can customize the animation parameters:

// Custom scroll range and animation
<ContainerTextScroll
  titleComponent={
    <h1 className="text-6xl font-black bg-gradient-to-r from-pink-500 to-violet-500 bg-clip-text text-transparent">
      Amazing Title
    </h1>
  }
>
  <div className="min-h-screen">{/* Your content */}</div>
</ContainerTextScroll>

Use Cases

Perfect for:

  • Landing Pages: Hero section animations
  • Storytelling: Narrative scroll experiences
  • Product Showcases: Feature reveals
  • Portfolio Sites: Creative scroll effects
  • Marketing Pages: Engaging user experiences