forever components

Cursor & Pointer

Elastic Ring

Glowing pink ring trails the pointer with damped-spring physics, stretching along velocity and squashing across it. Auto-demos on a Lissajous path when idle.

canvasmedium complexitymoderate motionpointer

Open on the canvas to copy the code → Free account · 3 copies a day · membership goes unlimited

Live demo — the real component, running in a sandbox. One self-contained HTML file, zero dependencies. Open it on the canvas →
Worth keeping? Votes steer what gets built next — sign in to cast one, free to read

When to use it

Creative portfolio heroes, cursor-replacement effects, interactive showcases where pointer physics add tactile feel.

When not to

Utility UIs where a hidden cursor frustrates users. Touch-only devices where pointermove never fires.

Working with an AI agent

Every component ships agent-ready metadata. An example instruction for this one:

Change ACC to '#00eaff', increase base ring size from Math.min(W,H)*0.085 to 0.12, and slow the spring by changing the acceleration factor from 0.14 to 0.08. Theme: dark tokens live in :root, the light variant in :root[data-theme="light"]; ?theme=light or a {type:'forever:theme'} postMessage switches at runtime.

Safe to edit

  • accent color (ACC = '#ff5ca8')
  • ring base size (Math.min(W,H)*0.085)
  • spring stiffness (ax=(tx-rx)*0.14)
  • damping factor ((vx+ax)*0.80)
  • idle timeout before demo resumes (2600ms)
  • Lissajous radius scale (R*0.30)
  • theme tokens (:root dark defaults + [data-theme=light] overrides)

Keep intact

  • DPR-aware canvas sizing and setTransform
  • visibilitychange pause guard
  • prefers-reduced-motion static fallback render
  • theme hook (?theme= bootstrap + forever:theme message listener + theme tokens)

Known limitations

  • Cursor is hidden (cursor:none) — must restore for production if replacing only part of a page
  • No touch fallback — demo auto-plays but ring never tracks finger on touch devices

cursorspringelasticringcanvasglowlissajous

More Cursor & Pointer components

  • Magnetic DotGlowing pink dot springs to the pointer; a laggy outer ring squashes along its travel, joined by a fading tendril. Self-demos via Lissajous path when idle.
  • Gooey Trail22 pink blobs chain-follow the pointer via spring physics and merge into liquid goo through an SVG feColorMatrix filter; auto-demos a Lissajous path when…
  • Spotlight MaskRadial spotlight follows the pointer, punching through a dark veil to reveal a pink dot grid and glowing word. Auto-demos via Lissajous path when idle.
  • Trail CometHot-pink comet spring-follows the cursor, dragging a tapering additive trail that lengthens with speed and flings spark particles. Idle: Lissajous demo loop.
  • Ripple FieldGrid of dots ripples outward in expanding pink rings as the pointer moves; dots displace radially along each wavefront. Lissajous auto-demo when idle.