BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/Svelte Animations/ripple
This component no longer exists. It was in Svelte Animations’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-05 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.

Ripple

svelte-animations/ripple
RemovedBlock

A component that creates expanding ripple circles with customizable size, opacity, and number of circles.

Install it

npx shadcn@latest add https://sv-animations.vercel.app/r/ripple.json

Source

./src/lib/components/magic/ripple/ripple.sveltesv-animations.vercel.app/r/ripple.json
1<script lang="ts">
2 import { cn } from "$UTILS$";
3 import type { HTMLAttributes } from "svelte/elements";
4
5 interface RippleProps extends HTMLAttributes<HTMLDivElement> {
6 mainCircleSize?: number;
7 mainCircleOpacity?: number;
8 numCircles?: number;
9 class?: string;
10 }
11
12 let {
13 mainCircleSize = 210,
14 mainCircleOpacity = 0.24,
15 numCircles = 8,
16 class: className,
17 ...props
18 }: RippleProps = $props();
19</script>
20
21<div
22 class={cn(
23 "pointer-events-none absolute inset-0 mask-[linear-gradient(to_bottom,white,transparent)] select-none",
24 className
25 )}
26 {...props}
27>
28 {#each Array.from({ length: numCircles }) as _, i}
29 {@const size = mainCircleSize + i * 70}
30 {@const opacity = mainCircleOpacity - i * 0.03}
31 {@const animationDelay = `${i * 0.06}s`}
32 <div
33 class="animate-ripple bg-foreground/25 absolute rounded-full border shadow-xl"
34 style="
35 --i: {i};
36 width: {size}px;
37 height: {size}px;
38 opacity: {opacity};
39 animation-delay: {animationDelay};
40 border-style: solid;
41 border-width: 1px;
42 border-color: var(--foreground);
43 top: 50%;
44 left: 50%;
45 transform: translate(-50%, -50%) scale(1);"
46 ></div>
47 {/each}
48</div>
49
50<!--
51style:--i={i}
52 style:width="{size}px"
53 style:height="{size}px"
54 style:opacity
55 style:animation-delay={animationDelay}
56 style:border-style="solid"
57 style:border-width="1px"
58 style:border-color="var(--foreground)"
59 style:top="50%"
60 style:left="50%"
61 style:transform="translate(-50%, -50%) scale(1)"
62 -->

Files it writes

  • ./src/lib/components/magic/ripple/ripple.svelte
  • ./src/lib/components/magic/ripple/index.ts

Facts

Registry
Svelte Animations
Type
registry:block
Access
Free
Files written
2
Theme wiring
ships cssVars
Licence
MIT
In the index
at or before 2026-08-01
Last confirmed
14 days ago

Go to the source

sv-animations.vercel.app SikandarJODD/animations on GitHub Raw registry item This item as JSON

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex