Button
Magnifying Dock
A macOS-style icon bar: the cursor drives a magnifier, icons grow on a spring, bounce on click and cast a floor reflection, running ones get a dot, and a ⌘K slot opens a small menu.
What you can change
- items — your own icons: an <img>, an svg or the built-in Tile; id and label are required
- activeIds — which tools carry the running-app dot
- commandLabel and commands — the slot caption and the ⌘K menu entries
A link for your AI agent: preview, code and instructions.
Preview
Use it with AI
- 1. Copy the link.
- 2. Write to your agent in your own words and drop the link into the sentence.
- 3. The agent opens the link and installs the component from the registry.
put this on the home page as the hero:
https://vibeui.ru/c/button-anim-002?lang=en&theme=dark
Not sure where to paste it? Step-by-step guide
Show the full instructions
What the link says, spelled out. Use it when your agent cannot open links — paste this text instead.
Loading…
For developers
The install command lives in the “Component source” block below — a signed link that stays valid for 24 hours.
Technical notes
A client component. The magnification is computed as a raised-cosine bell from the cursor's distance to each icon's centre and written straight to the CSS variable --s rather than through React state: pointermove fires dozens of times a second and rendering on each is wasted frames (the same trick as the magnetic button button-071). A width/height CSS transition smooths the steps into a spring. The magnifier is mouse-only (pointerType === 'mouse'); on touch and under prefers-reduced-motion the icons stay put. A click adds data-bounce and starts a keyframe hop, cleared on onAnimationEnd. The reflection is the same icon flipped scaleY(-1) under a gradient mask. The tooltip and the running-app dot are pure CSS (:hover/:focus-visible, data-active). The ⌘K menu is the menuOpen state. The theme comes from color-scheme through light-dark(), and the .dark class turns the dark theme on.
Tags
- button
- dock
- macos
- magnify
- toolbar
- launcher
- hover
- animated
- tooltip
- command
Component source
The same file your agent installs. Here in case you would rather copy it by hand.
Loading…