Scroll Driven Text
Scroll Driven Text is a React and Tailwind CSS text component from UI Layouts, licensed MIT. Copy it and paste it into your project.
UI Layouts
MIT
text
What it is
Scroll Driven Text is a React and Tailwind CSS text component from UI Layouts, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
Needs
npm i motion @motionone/utils
Licence
This component comes from UI Layouts and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Scroll Driven Text
// @ts-nocheck
'use client';
import { cn } from '@/lib/utils';
import { type HTMLMotionProps, motion } from 'motion/react';
import type React from 'react';
import type { JSX } from 'react';
type Direction = 'up' | 'down' | 'left' | 'right';
const containerVariants = {
hidden: {},
visible: {
transition: {
staggerChildren: 0.1,
},
},
};
const generateVariants = (direction: Direction): { hidden: any; visible: any } => {
const axis = direction === 'left' || direction === 'right' ? 'X' : 'Y';
const value = direction === 'right' || direction === 'down' ? 100 : -100;
return {
hidden: {
filter: 'blur(10px)',
opacity: 0,
[`translate${axis}`]: value,
},
visible: {
filter: 'blur(0px)',
opacity: 1,
[`translate${axis}`]: 0,
transition: {
duration: 0.4,
ease: 'easeOut',
},
},
};
};
const defaultViewport = { amount: 0.3, margin: '0px 0px 0px 0px' };
const TextAnimation = ({
as = 'h1',
text,
classname = '',
viewport = defaultViewport,
variants,
direction = 'down',
letterAnime = false,
lineAnime = false,
}: {
text: string;
classname?: string;
as?: keyof JSX.IntrinsicElements;
viewport?: {
amount?: number;
margin?: string;
once?: boolean;
};
variants?: {
hidden?: any;
visible?: any;
};
direction?: Direction;
letterAnime?: boolean;
lineAnime?: boolean;
}) => {
const baseVariants = variants || generateVariants(direction);
const modifiedVariants = {
hidden: baseVariants.hidden,
visible: {
...baseVariants.visible,
},
};
const MotionComponent = motion[as as keyof typeof motion] as React.ComponentType<
HTMLMotionProps<any>
>;
return (
<MotionComponent
whileInView='visible'
initial='hidden'
variants={containerVariants}
viewport={viewport}
className={cn(`inline-block dark:text-white text-black uppercase`, classname)}
>
{lineAnime ? (
<motion.span className={`inline-block`} variants={modifiedVariants}>
{text}
</motion.span>
) : (
<>
{text.split(' ').map((word: string, index: number) => (
<motion.span
key={`${word}-${index}`}
className={`inline-block`}
variants={letterAnime === false ? modifiedVariants : {}}
>
{letterAnime ? (
<>
{word.split('').map((letter: string, letterIndex: number) => (
<motion.span
key={letterIndex}
className={`inline-block`}
variants={modifiedVariants}
>
{letter}
</motion.span>
))}
</>
) : (
<>{word} </>
)}
</motion.span>
))}
</>
)}
</MotionComponent>
);
};
export default TextAnimation;