Files
hyperframes/registry/components/multiplayer-cursors/demo.html
Miguel Ángel 9734578e60 feat(registry): bring back the video-primitive moves (#3169)
Restores the 208 catalog items reverted after their previews 404'd in
production, this time on the payload mechanism rather than the .html files
that caused the outage.

The generator no longer writes a preview document to docs/public. That writer,
and the machinery under it, existed only to produce files the docs host
discards, so it is gone rather than bypassed. Items now embed the composition
itself via a payload, which is what the previous change already does for the
items that were already in the catalog.

The variables explorer is parked, not restored: it drove its preview through
the same unpublished .html path, so it would have shown an empty frame. Items
that declare variables get the live player plus the static variables table, and
reconnecting the explorer to payloads is a follow-up.
2026-08-10 18:46:03 -04:00

122 lines
3.6 KiB
HTML
Vendored

<!doctype html>
<!--
multiplayer-cursors demo. Standalone 1920x1080 host that mounts the
primitive through data-composition-src. The mount receives non-default
cursorCount and labels values, so both variables are proven through the
same per-instance path used by installed compositions. The primitive stays
responsible for all cursor markup and motion.
-->
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=1920, height=1080" />
<title>Multiplayer Cursors, Demo</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
width: 1920px;
height: 1080px;
overflow: hidden;
background: var(--bg, #05070d);
}
#root {
position: relative;
width: 1920px;
height: 1080px;
overflow: hidden;
background:
radial-gradient(
circle at 50% 46%,
color-mix(in srgb, var(--accent, #38bdf8) 12%, transparent),
transparent 34%
),
linear-gradient(145deg, var(--bg, #0b1220), var(--bg, #05070d) 68%);
}
.mount-card {
--bg: #0b1120;
--fg: #f8fafc;
--muted: #94a3b8;
--surface: #e2e8f0;
--border: #475569;
--brand: #a3e635;
--accent: #38bdf8;
--font-display: Inter, system-ui, sans-serif;
--font-body: Inter, system-ui, sans-serif;
--font-mono: ui-monospace, monospace;
--radius: 999px;
--space-1: 0.7cqw;
--space-2: 1.25cqw;
--space-3: 2.4cqw;
--dur-beat: 0.55s;
--ease-standard: cubic-bezier(0.215, 0.61, 0.355, 1);
--ease-emphasis: cubic-bezier(0.19, 1, 0.22, 1);
position: absolute;
width: 54%;
height: 56%;
left: 23%;
top: 22%;
overflow: hidden;
border: 1px solid color-mix(in srgb, var(--border, #94a3b8) 28%, transparent);
border-radius: 36px;
background:
linear-gradient(
color-mix(in srgb, var(--border, #94a3b8) 5.5%, transparent) 1px,
transparent 1px
),
linear-gradient(
90deg,
color-mix(in srgb, var(--border, #94a3b8) 5.5%, transparent) 1px,
transparent 1px
),
radial-gradient(circle at 50% 50%, var(--bg, #162238), var(--bg, #0b1120) 64%);
background-size:
52px 52px,
52px 52px,
100% 100%;
box-shadow:
0 40px 100px color-mix(in srgb, var(--bg, #000000) 46%, transparent),
inset 0 1px 0 color-mix(in srgb, var(--fg, #ffffff) 5%, transparent);
}
</style>
</head>
<body>
<div
id="root"
data-composition-id="multiplayer-cursors-demo"
data-start="0"
data-width="1920"
data-height="1080"
data-duration="6"
data-fps="30"
>
<div
id="multiplayer-cursors-mount"
class="mount-card clip"
data-composition-id="multiplayer-cursors"
data-composition-src="./multiplayer-cursors.html"
data-variable-values='{"cursorCount":6,"labels":"Iris,Noah,Sam,Jo,Lee,Zed"}'
data-start="0"
data-duration="6"
data-track-index="0"
data-width="1037"
data-height="605"
></div>
</div>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.14.2/dist/gsap.min.js"></script>
<script>
// Static host only. The mounted primitive owns all visible motion.
window.__timelines = window.__timelines || {};
window.__timelines["multiplayer-cursors-demo"] = gsap.timeline({ paused: true });
</script>
</body>
</html>