Media Background
Media Background is a React and Tailwind CSS component from Cult UI, licensed MIT. Copy it and paste it into your project.
Cult UI
MIT
other
What it is
Media Background is a React and Tailwind CSS component from Cult UI, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
Needs
npm i class-variance-authority
Licence
This component comes from Cult UI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Media Background
"use client"
import React, { useRef, useState } from "react"
import { cva } from "class-variance-authority"
import { cn } from "@/lib/utils"
// Make sure this utility exists in your project for combining class names
// Define the type for the variant and type props
type OverlayVariant = "none" | "light" | "dark"
type MediaType = "image" | "video"
// Update the cva call with these types
const backgroundVariants = cva(
"relative h-screen max-h-[1000px] w-full min-h-[500px] lg:min-h-[600px]",
{
variants: {
overlay: {
none: "",
light:
"before:absolute before:inset-0 before:bg-white before:opacity-30",
dark: "before:absolute before:inset-0 before:bg-black before:opacity-30",
},
type: {
image: "",
video: "z-10",
},
},
defaultVariants: {
overlay: "none",
type: "image",
},
}
)
interface BackgroundMediaProps {
variant?: OverlayVariant
type?: MediaType
src: string
alt?: string
}
export const BackgroundMedia: React.FC<BackgroundMediaProps> = ({
variant = "light",
type = "image",
src,
alt = "",
}) => {
const [isPlaying, setIsPlaying] = useState(true)
const mediaRef = useRef<HTMLVideoElement | null>(null)
const toggleMediaPlay = () => {
if (type === "video" && mediaRef.current) {
if (isPlaying) {
mediaRef.current.pause()
} else {
mediaRef.current.play()
}
setIsPlaying(!isPlaying)
}
}
const mediaClasses = cn(
backgroundVariants({ overlay: variant, type }),
"overflow-hidden"
)
const renderMedia = () => {
if (type === "video") {
return (
<video
ref={mediaRef}
aria-hidden="true"
muted
className="absolute inset-0 h-full w-full object-cover transition-opacity duration-300 pointer-events-none"
autoPlay
playsInline
>
<source src={src} type="video/mp4" />
Your browser does not support the video tag.
</video>
)
} else {
return (
<img
src={src}
alt={alt}
className="absolute inset-0 h-full w-full object-cover rounded-br-[88px]"
loading="eager"
/>
)
}
}
return (
<div className={mediaClasses}>
{renderMedia()}
{type === "video" && (
<button
aria-label={isPlaying ? "Pause video" : "Play video"}
className="absolute bottom-4 right-4 z-50 px-4 py-2 bg-gray-900 text-white hover:bg-gray-700 focus:outline-none focus:ring-2 focus:ring-gray-500 focus:ring-offset-2"
onClick={toggleMediaPlay}
>
{isPlaying ? "Pause" : "Play"}
</button>
)}
</div>
)
}
export default BackgroundMedia