Shuffle Text
Animations
Text shuffle animation with scramble effect.
Import
import { PixelShuffleText } from "@/components/ui/pixel/animations/pixel-shuffle-text"Usage
SHUFFLE
Component Source
Copy and paste the following code into your project at /src/components/ui/pixel/animations/pixel-shuffle-text.tsx
"use client";
import * as React from "react";
import Shuffle from "@/components/Shuffle";
export function PixelShuffleText(props: any) {
return (
<div className="pixel-animation-wrapper">
<Shuffle {...props} />
</div>
);
}
export default PixelShuffleText;
Accessibility
This component is built with accessibility in mind, including proper ARIA attributes, keyboard navigation, and focus management.