Text Generate Effect
A cool text effect that fades in text on page load, one by one.
Oxygen gets you high. In a catastrophic emergency, we're taking giant, panicked breaths. Suddenly you become euphoric, docile. You accept your fate. It's all right here. Emergency water landing, six hundred miles an hour. Blank faces, calm as Hindu cows
<script lang="ts">
import { TextGenerateEffect } from '.';
const words = `Oxygen gets you high. In a catastrophic emergency, we're taking giant, panicked breaths. Suddenly you become euphoric, docile. You accept your fate. It's all right here. Emergency water landing, six hundred miles an hour. Blank faces, calm as Hindu cows`;
</script>
<TextGenerateEffect {words} />
Installation
Install Dependencies
npm i svelte-motion clsx tailwind-merge
Add util file
src/lib/utils/cn.ts
import { type ClassValue, clsx } from 'clsx';
import { twMerge } from 'tailwind-merge';
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}
Copy the source code
src/lib/components/ui/TextGenerateEffect/TextGenerateEffect.svelte
<script lang="ts">
import { Motion } from 'svelte-motion';
import { cn } from '$lib/utils';
export let words: string;
export let className: string | undefined = undefined;
const variants = {
visible: (i: number) => ({
opacity: 1,
transition: {
delay: i * 0.2,
duration: 2
}
}),
hidden: { opacity: 0 }
};
</script>
<div class={cn('font-bold', className)}>
<div class="mt-4">
<div class=" text-2xl leading-snug tracking-wide text-black dark:text-white">
<Motion let:motion custom={0} {variants} initial="hidden" animate={'visible'}>
<div use:motion>
{#each words.split(' ') as word, idx (`${word}${idx}`)}
<Motion let:motion {variants} custom={idx + 1} initial="hidden" animate={'visible'}>
<span use:motion class="text-black dark:text-white">
{word}{' '}
</span>
</Motion>
{/each}
</div>
</Motion>
</div>
</div>
</div>
src/lib/components/ui/TextGenerateEffect/index.ts
import TextGenerateEffect from './TextGenerateEffect.svelte';
export { TextGenerateEffect };
Props
TextGenerateEffect
Prop | Type | Description |
---|---|---|
className | string | undefined | The class name of the child component. |
words | string | The word string that you want to animate |