Overview
A magical sparkle/reveal sound for dramatic unveils, feature reveals, and wow moments. Duration: 2.04s.
Installation
React / Web Audio
npx shadcn@latest add @elements/sfx-magic-revealVideo Production / Agents
curl -o public/sfx/magic-reveal.mp3 https://tryelements.dev/sfx/magic-reveal.mp3Usage
React Hook
import { useSound } from "@/hooks/use-sound";
import { magicRevealSound } from "@/sfx/magic-reveal";
export function RevealButton() {
const [play] = useSound(magicRevealSound, { volume: 0.5 });
return <button onClick={play}>Reveal</button>;
}Remotion
import { Audio, staticFile } from "remotion";
export function MagicReveal() {
return <Audio src={staticFile("sfx/magic-reveal.mp3")} volume={0.45} />;
}Timing
Play 50ms before the dramatic reveal for the best impact.
License
CC0 (public domain). No attribution required. Free for commercial use.