Changelog — Rolling Numbers
remocn-demo/changelogFreeBlock
remocn demo composition "Changelog — Rolling Numbers" — installs the full Remotion composition. Generated with AI from the prompt in demos/changelog/prompt.md.
Install it
npx shadcn@latest add https://collections.remocn.dev/r/changelog.jsonSource
1"use client";23import { interpolate, useCurrentFrame, useVideoConfig } from "remotion";45export interface BlurRevealProps {6 text: string;7 className?: string;8 blur?: number;9 fontSize?: number;10 color?: string;11 fontWeight?: number;12 speed?: number;13}1415export function BlurReveal({16 text,17 className,18 blur = 10,19 fontSize = 48,20 color = "#171717",21 fontWeight = 600,22 speed = 1,23}: BlurRevealProps) {24 const frame = useCurrentFrame() * speed;25 const { durationInFrames } = useVideoConfig();2627 const opacity = interpolate(frame, [0, durationInFrames * 0.6], [0, 1], {28 extrapolateRight: "clamp",29 });3031 const blurAmount = interpolate(32 frame,33 [0, durationInFrames * 0.6],34 [blur, 0],35 { extrapolateRight: "clamp" },36 );3738 return (39 <div40 style={{41 position: "absolute",42 inset: 0,43 display: "flex",44 alignItems: "center",45 justifyContent: "center",46 background: "transparent",47 }}48 >49 <span50 className={className}51 style={{52 opacity,53 filter: `blur(${blurAmount}px)`,54 fontSize,55 fontWeight,56 color,57 letterSpacing: "-0.05em",58 fontFamily:59 "var(--font-geist-sans), -apple-system, BlinkMacSystemFont, sans-serif",60 }}61 >62 {text}63 </span>64 </div>65 );66}
What it pulls in
npm packages
Other registry items
Files it writes
More from remocn-demo
All 22 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Agent Skills — Claude Code makes the videoagent-skills | remocn-demo | Blocks | Free | 5 deps · 8 files | |
| Batchwork — Unified Batch APIbatchwork | remocn-demo | Blocks | Free | 4 deps · 4 files | |
| Changelog — New Chat Componentschat-changelog | remocn-demo | Blocks | Free | 5 deps · 4 files | |
| Fonttrio — Three fonts. One command.fonttrio | remocn-demo | Blocks | Free | 5 deps · 4 files | |
| remocn — Introducing remocn (shaders cut)introducing-remocn | remocn-demo | Blocks | Free | 4 deps · 3 files | |
| shadcn/ui — Introducing shadcn/ui (gift cut)introducing-shadcn | remocn-demo | Blocks | Free | 11 deps · 38 files | |
| Changelog — Eleven New Transitionsnew-transitions | remocn-demo | Blocks | Free | 4 deps · 3 files | |
| remocn ✕ Paper — Introducing shaderspaper-shaders | remocn-demo | Blocks | Free | 4 deps · 2 files |
