BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/@dotmatrix/dotm-circular-10

Binary Bloom

dotmatrix/dotm-circular-10
FreeComponent

Binary-style opacity tiers pulse in modular steps so only a few cells peak at once while others stay low, producing a crisp coded bloom.

Install it

npx shadcn@latest add https://dotmatrix.zzzzshawn.cloud/r/dotm-circular-10.json

Source

components/ui/dotm-circular-10.tsxdotmatrix.zzzzshawn.cloud/r/dotm-circular-10.json
1"use client";
2
3import { useMemo } from "react";
4
5import { DotMatrixBase } from "@/components/ui/dotmatrix-core";
6import { useDotMatrixPhases } from "@/components/ui/dotmatrix-hooks";
7import { isWithinCircularMask } from "@/components/ui/dotmatrix-core";
8import { useCyclePhase } from "@/components/ui/dotmatrix-hooks";
9import { usePrefersReducedMotion } from "@/components/ui/dotmatrix-hooks";
10import type { DotAnimationResolver, DotMatrixCommonProps } from "@/components/ui/dotmatrix-core";
11
12export type DotmCircular10Props = DotMatrixCommonProps;
13
14const STEP_COUNT = 30;
15const BASE_OPACITY = 0.06;
16const LOW_OPACITY = 0.2;
17const MID_OPACITY = 0.48;
18const HIGH_OPACITY = 0.94;
19
20function moduloDistance(a: number, b: number, mod: number): number {
21 const raw = Math.abs(a - b);
22 return Math.min(raw, mod - raw);
23}
24
25export function DotmCircular10({
26 speed = 1.75,
27 animated = true,
28 hoverAnimated = false,
29 ...rest
30}: DotmCircular10Props) {
31 const reducedMotion = usePrefersReducedMotion();
32 const { phase: matrixPhase, onMouseEnter, onMouseLeave } = useDotMatrixPhases({
33 animated: Boolean(animated && !reducedMotion),
34 hoverAnimated: Boolean(hoverAnimated && !reducedMotion),
35 speed
36 });
37 const animPhase = useCyclePhase({
38 active: !reducedMotion && matrixPhase !== "idle",
39 cycleMsBase: 1600,
40 speed
41 });
42
43 const resolver = useMemo<DotAnimationResolver>(() => {
44 return ({ row, col, phase }) => {
45 if (!isWithinCircularMask(row, col)) {
46 return { className: "dmx-inactive" };
47 }
48
49 const x = col - 2;
50 const y = row - 2;
51 const ring = Math.round(Math.sqrt(x * x + y * y));
52 const tick = reducedMotion || phase === "idle" ? 0 : Math.floor((animPhase) * 10);
53 const cellCode = (row * 3 + col * 5 + ring * 2) % 10;
54 const d = moduloDistance(cellCode, tick, 10);
55 const parityGate = (row + col + tick) % 2 === 0;
56
57 let opacity = BASE_OPACITY;
58 if (d === 0) {
59 opacity = HIGH_OPACITY;
60 } else if (d === 1) {
61 opacity = MID_OPACITY;
62 } else if (d === 2 || parityGate) {
63 opacity = LOW_OPACITY;
64 }
65
66 if (x === 0 && y === 0) {
67 return { style: { opacity: Math.max(opacity, MID_OPACITY) } };
68 }
69
70 return { style: { opacity } };
71 };
72 }, [reducedMotion, animPhase]);
73
74 return (
75 <DotMatrixBase
76 {...rest}
77 size={rest.size ?? 36}
78 dotSize={rest.dotSize ?? 5}
79 speed={speed}
80 pattern="full"
81 animated={animated}
82// … truncated

Facts

Registry
@dotmatrix
Type
registry:ui
Access
Free
Files written
0
Licence
the repository states none
In the index
at or before 2026-08-08
Last confirmed
yesterday

Go to the source

dotmatrix.zzzzshawn.cloud zzzzshawn/matrix on GitHub Raw registry item This item as JSON

More from @dotmatrix

All 91 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
All Dot Matrix Loadersall@dotmatrixComponentsFreeno deps
Square Spiraldotm-3x3-1@dotmatrixComponentsFreeno deps
Frame Chasedotm-3x3-10@dotmatrixComponentsFreeno deps
Glyph Pulsedotm-3x3-11@dotmatrixComponentsFreeno deps
Drop Rippledotm-3x3-12@dotmatrixComponentsFreeno deps
Right Surgedotm-3x3-13@dotmatrixComponentsFreeno deps
Comet Traildotm-3x3-14@dotmatrixComponentsFreeno deps
Echo Ringsdotm-3x3-15@dotmatrixComponentsFreeno deps

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

KitGrade

SaaS starter kits, scored from measured facts

kitgrade.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 KitGrade

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 KitGrade

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 KitGrade

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