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