VJ Spiral
Dynamic VJ spiral background with hypnotic rotating patterns.
Dynamic VJ spiral background with hypnotic rotating patterns.
Option 1: Using CLI (Recommended)
Install this video background directly using the CLI:
npx shaderz addSelect "VJ Spiral" from the list. The video will be added to /public/videos/.
Option 2: Manual Installation
/public/videos/ directoryBasic Usage:
<video
src="/videos/vj-spiral.mp4"
autoPlay
loop
muted
playsInline
className="w-full h-full object-cover"
/>Hero Section Background Example:
export default function Home() {
return (
<section className="relative min-h-screen">
{/* Video background */}
<div className="absolute inset-0 -z-10">
<video
src="/videos/vj-spiral.mp4"
autoPlay
loop
muted
playsInline
className="w-full h-full object-cover"
/>
</div>
{/* Your hero content */}
<div className="relative z-10 flex items-center justify-center min-h-screen">
<h1 className="text-6xl font-bold text-white">
Welcome to Your Site
</h1>
</div>
</section>
);
}