Multidirectional
Slide
Installation
pnpm add clsx framer-motion
pnpm add clsx framer-motion
Copy and paste the following code into your project.
components/eldoraui/multidirectionalslide.tsx
"use client";
import clsx from "clsx";
import { motion } from "framer-motion";
interface MultiDirectionSlideProps {
textLeft?: string;
textRight?: string;
className?: string;
}
export const MultiDirectionSlide: React.FC<MultiDirectionSlideProps> = ({
textLeft = "",
textRight = "",
className = "",
}) => {
const MULTIDIRECTION_SLIDE_VARIANTS = {
hidden: { opacity: 0, x: "-25vw" },
visible: { opacity: 1, x: 0 },
right: { opacity: 0, x: "25vw" },
};
return (
<div className={clsx("overflow-hidden", className)}>
<motion.h1
initial="hidden"
animate="visible"
variants={MULTIDIRECTION_SLIDE_VARIANTS}
transition={{ duration: 1 }}
className={clsx(
"text-center font-display font-bold drop-shadow-sm",
"text-4xl md:text-5xl lg:text-6xl xl:text-7xl",
"tracking-[-0.02em]",
"md:leading-[4rem] lg:leading-[4.5rem] xl:leading-[5rem]",
)}
>
{textLeft}
</motion.h1>
<motion.h1
initial="right"
animate="visible"
variants={MULTIDIRECTION_SLIDE_VARIANTS}
transition={{ duration: 1 }}
className={clsx(
"text-center font-display font-bold drop-shadow-sm",
"text-4xl md:text-5xl lg:text-6xl xl:text-7xl",
"tracking-[-0.02em]",
"md:leading-[4rem] lg:leading-[4.5rem] xl:leading-[5rem]",
)}
>
{textRight}
</motion.h1>
</div>
);
};
Update the import paths to match your project setup.
Props
Prop Name | Type | Default | Description |
---|---|---|---|
textLeft | string | "" | The text content to display on the left side of the slide. |
textRight | string | "" | The text content to display on the right side of the slide. |
className | string | "" | Additional CSS classes to apply to the component for custom styling. |