Video Ticker Strip CTA
Centered CTA heading, copy, and buttons sit above a horizontal strip of small looping video tiles that scrolls left forever, an energetic marquee of product moments beneath a clear call to action.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its button dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/video-ticker-strip-cta.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/cta/cta59.tsx instead.
Usage
The file also exports cta59Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.
import { Cta59, cta59Demo } from "@/components/blocks/cta/cta59"; export default function Page() { return <Cta59 {...cta59Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | none | Small label above the heading. |
| heading | string | none | Main CTA heading. |
| description | string | none | Supporting paragraph. |
| primaryLabel | string | "Get started" | Primary button label. |
| primaryHref | string | "#" | Primary button destination. |
| secondaryLabel | string | none | Optional secondary outline button label. |
| secondaryHref | string | "#" | Secondary button destination. |
| clips | TickerClip[] | none | Video tiles shown in the scrolling strip, in order. |
| className | string | none | Extra classes for the outer section element. |
Types
interface TickerClip { videoSrc: string; posterSrc: string; label: string; }
Behavior notes
- The strip scrolls via a pure CSS `@keyframes` translateX loop; the `clips` list is rendered twice back to back in JSX (`[...clips, ...clips]`) and the animation translates exactly -50%, so the seam is invisible and the loop never resets or jumps.
- Every video tile autoplays muted and looped via native HTML attributes only, marked `aria-hidden` since the strip is decorative motion, not content a screen reader needs tile-by-tile.
- Left/right edge gradients fade the strip into the background so tiles appear to scroll in and out rather than clipping abruptly.
More CTA Blocks
View all →centered-newsletter-cta
Centered Newsletter CTA
Minimal centered call-to-action with heading, description, and action buttons.
split-layout-newsletter-cta
Split Layout Newsletter CTA
Two-column call-to-action with a decorative image on one side and a feature list plus subscribe form on the other.
newsletter-social-proof-cta
Newsletter CTA with Social Proof
Newsletter call-to-action with an avatar stack, subscriber count, and a testimonial quote.
banner-cta
Banner CTA
Horizontal banner call-to-action with heading and action buttons side by side.
stats-cta
Stats CTA
Call-to-action section with impressive statistics and trust indicators above action buttons.
multi-card-cta
Multi-Card CTA
Three action cards side by side, each offering a different path to conversion.