mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-04 16:42:27 +00:00
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.
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
# scramble-reveal
|
||||
|
||||
A target string begins as deterministic wrong glyphs and resolves one character at a time, left to right. Every visible frame comes from one fixed-seed LCG table built before the timeline registers, so seeks in either direction always show the same string. The locked string then holds until the frame cuts.
|
||||
|
||||
3s authored, elastic HOLD, exit `none` by default.
|
||||
|
||||
## Variables
|
||||
|
||||
| id | type | default | notes |
|
||||
| -------- | ------ | ------------- | -------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `text` | string | `HYPERFRAMES` | Target string. Font size auto-fits to character count. |
|
||||
| `accent` | enum | `green` | Text, prefix, and frame color: green rides `--brand`, blue rides `--accent`, violet rides `--accent-2`. |
|
||||
| `style` | enum | `terminal` | `terminal` (framed shell with `>_` prefix) or `clean` (text only). |
|
||||
| `exit` | enum | `none` | `none` holds until the cut; `fade` departs opacity-only; `up` is the curved arc departure (the pre-Wave-J default ending). |
|
||||
|
||||
## Mount
|
||||
|
||||
```html
|
||||
<div
|
||||
class="clip"
|
||||
data-composition-id="scramble-reveal"
|
||||
data-composition-src="./scramble-reveal.html"
|
||||
data-variable-values='{"text":"DETERMINISM","style":"clean","accent":"violet"}'
|
||||
data-start="0"
|
||||
data-duration="3"
|
||||
data-track-index="0"
|
||||
></div>
|
||||
```
|
||||
|
||||
Elastic root: no `data-width`/`data-height`; it fills whatever box the host clip gives it. Timeline registers under the literal `scramble-reveal` key.
|
||||
|
||||
## Notes
|
||||
|
||||
- Deterministic: fixed LCG seed `0x27c0ffee`, authored 30fps frame rows, monotonic left-to-right lock frames.
|
||||
- The hold is a finite drift cycle followed by authored stillness, never a repeating tween.
|
||||
+90
@@ -0,0 +1,90 @@
|
||||
<!doctype html>
|
||||
<!--
|
||||
scramble-reveal demo. This standalone composition mounts the primitive
|
||||
through data-composition-src. Non-default text, accent, and style values
|
||||
prove the variable path while the primitive remains elastic to its host.
|
||||
-->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=1920, height=1080" />
|
||||
<title>Scramble Reveal Demo</title>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
width: 1920px;
|
||||
height: 1080px;
|
||||
overflow: hidden;
|
||||
background: var(--bg, #0b0c0e);
|
||||
}
|
||||
|
||||
#root {
|
||||
--bg: #0b0c0e;
|
||||
--fg: #f8fafc;
|
||||
--surface: #14171c;
|
||||
--border: #343a46;
|
||||
--brand: #71f5a7;
|
||||
--accent: #c5a3ff;
|
||||
--font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
|
||||
position: relative;
|
||||
width: 1920px;
|
||||
height: 1080px;
|
||||
overflow: hidden;
|
||||
background: radial-gradient(
|
||||
ellipse at 50% 44%,
|
||||
var(--bg, #171a20) 0%,
|
||||
var(--bg, #0b0c0e) 72%
|
||||
);
|
||||
}
|
||||
|
||||
.mount-card {
|
||||
width: 76%;
|
||||
height: 40%;
|
||||
left: 12%;
|
||||
top: 30%;
|
||||
container-type: size;
|
||||
overflow: hidden;
|
||||
border: 1px solid color-mix(in srgb, var(--border, #94a3b8) 20%, transparent);
|
||||
border-radius: 30px;
|
||||
background: color-mix(in srgb, var(--surface, #101318) 72%, transparent);
|
||||
box-shadow: 0 40px 100px color-mix(in srgb, var(--bg, #000000) 48%, transparent);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div
|
||||
id="root"
|
||||
data-composition-id="scramble-reveal-demo"
|
||||
data-start="0"
|
||||
data-width="1920"
|
||||
data-height="1080"
|
||||
data-duration="3"
|
||||
data-fps="30"
|
||||
>
|
||||
<div
|
||||
id="scramble-reveal-mount"
|
||||
class="mount-card clip"
|
||||
data-composition-id="scramble-reveal"
|
||||
data-composition-src="./scramble-reveal.html"
|
||||
data-variable-values='{"text":"SEEK SAFE","accent":"violet","style":"clean"}'
|
||||
data-start="0"
|
||||
data-duration="3"
|
||||
data-track-index="0"
|
||||
data-width="1459"
|
||||
data-height="432"
|
||||
></div>
|
||||
</div>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/gsap@3.14.2/dist/gsap.min.js"></script>
|
||||
<script>
|
||||
window.__timelines = window.__timelines || {};
|
||||
window.__timelines["scramble-reveal-demo"] = gsap.timeline({ paused: true });
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,68 @@
|
||||
{
|
||||
"$schema": "https://hyperframes.heygen.com/schema/registry-item.json",
|
||||
"name": "scramble-reveal",
|
||||
"type": "hyperframes:component",
|
||||
"title": "Scramble Reveal",
|
||||
"description": "A deterministic hacker-style text reveal that cycles fixed glyph rows and locks the target string from left to right.",
|
||||
"tags": ["motion-primitive", "text-effects", "scramble", "reveal", "deterministic"],
|
||||
"jobs": ["reveal"],
|
||||
"family": "text-effects",
|
||||
"profile": "decode",
|
||||
"evidence": "Wave H U27 design research: fixed-seed glyph cycling with authored left-to-right lock frames",
|
||||
"syncPoints": [{ "id": "scramble-lock", "phase": "in", "offset": 1.5 }],
|
||||
"files": [
|
||||
{
|
||||
"path": "scramble-reveal.html",
|
||||
"target": "compositions/components/scramble-reveal.html",
|
||||
"type": "hyperframes:snippet"
|
||||
}
|
||||
],
|
||||
"variables": [
|
||||
{
|
||||
"id": "text",
|
||||
"type": "string",
|
||||
"role": "content",
|
||||
"label": "Text",
|
||||
"description": "Target string that resolves from deterministic wrong glyphs.",
|
||||
"default": "HYPERFRAMES"
|
||||
},
|
||||
{
|
||||
"id": "accent",
|
||||
"type": "enum",
|
||||
"role": "style",
|
||||
"label": "Accent",
|
||||
"description": "Color used by the text, prefix, and optional terminal frame.",
|
||||
"default": "green",
|
||||
"options": [
|
||||
{ "value": "green", "label": "Green" },
|
||||
{ "value": "blue", "label": "Blue" },
|
||||
{ "value": "violet", "label": "Violet" }
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "style",
|
||||
"type": "enum",
|
||||
"role": "style",
|
||||
"label": "Style",
|
||||
"description": "Terminal frame or clean text-only presentation.",
|
||||
"default": "terminal",
|
||||
"options": [
|
||||
{ "value": "terminal", "label": "Terminal" },
|
||||
{ "value": "clean", "label": "Clean" }
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "exit",
|
||||
"type": "enum",
|
||||
"role": "timing",
|
||||
"label": "Exit",
|
||||
"description": "Optional departure. Default none: the locked string holds until the frame cuts.",
|
||||
"default": "none",
|
||||
"options": [
|
||||
{ "value": "none", "label": "None" },
|
||||
{ "value": "fade", "label": "Fade" },
|
||||
{ "value": "up", "label": "Up" }
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,289 @@
|
||||
<!doctype html>
|
||||
<!--
|
||||
scramble-reveal: HyperFrames video primitive (text effects / reveal)
|
||||
|
||||
A target string begins as deterministic wrong glyphs, then resolves one
|
||||
character at a time from left to right. Every visible frame comes from one
|
||||
fixed-seed LCG table built before the timeline is registered.
|
||||
|
||||
Variables:
|
||||
- text (string, default "HYPERFRAMES"): the target string.
|
||||
- accent (green | blue | violet, default "green"): text and frame color.
|
||||
- style (terminal | clean, default "terminal"): optional terminal frame.
|
||||
- exit (none | fade | up, default "none"): optional departure.
|
||||
|
||||
Envelope, fixed IN and OUT with elastic HOLD only:
|
||||
IN_BASE = 1.65s, curved arrival and the complete left-to-right lock
|
||||
HOLD = max(0, D - IN - OUT), subtle drift followed by 0.30s stillness
|
||||
OUT_BASE = 0.45s departure when exit is fade or up, 0s when exit is
|
||||
none (the default: the locked string holds until the cut)
|
||||
If D is shorter than IN_BASE + OUT_BASE, IN and OUT compress together.
|
||||
The timeline is never time-scaled.
|
||||
|
||||
Determinism: frameTable is computed exactly once during synchronous
|
||||
timeline construction from fixed LCG seed 0x27c0ffee. Timeline sets only
|
||||
read authored rows from that table, so repeated or reverse seeks produce
|
||||
the same string for the same time.
|
||||
|
||||
Mount contract: the runtime clones only this template. #root fills the host
|
||||
box, establishes the container query basis, has no data-width or data-height,
|
||||
and registers one paused timeline under the literal scramble-reveal key.
|
||||
-->
|
||||
<html
|
||||
lang="en"
|
||||
data-composition-id="scramble-reveal"
|
||||
data-composition-duration="3"
|
||||
data-composition-variables='[
|
||||
{ "id": "text", "type": "string", "role": "content", "label": "Text", "description": "Target string that resolves from deterministic wrong glyphs.", "default": "HYPERFRAMES" },
|
||||
{ "id": "accent", "type": "enum", "role": "style", "label": "Accent", "description": "Color used by the text, prefix, and optional terminal frame.", "default": "green", "options": [{ "value": "green", "label": "Green" }, { "value": "blue", "label": "Blue" }, { "value": "violet", "label": "Violet" }] },
|
||||
{ "id": "style", "type": "enum", "role": "style", "label": "Style", "description": "Terminal frame or clean text-only presentation.", "default": "terminal", "options": [{ "value": "terminal", "label": "Terminal" }, { "value": "clean", "label": "Clean" }] },
|
||||
{ "id": "exit", "type": "enum", "role": "timing", "label": "Exit", "description": "Optional departure. Default none: the locked string holds until the frame cuts.", "default": "none", "options": [{ "value": "none", "label": "None" }, { "value": "fade", "label": "Fade" }, { "value": "up", "label": "Up" }] }
|
||||
]'
|
||||
>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Scramble Reveal</title>
|
||||
</head>
|
||||
<body>
|
||||
<template>
|
||||
<div id="root" data-composition-id="scramble-reveal" data-duration="3" data-fps="30">
|
||||
<style>
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
#root {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
overflow: hidden;
|
||||
container-type: size;
|
||||
isolation: isolate;
|
||||
color: var(--fg, #f8fafc);
|
||||
font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, Consolas, monospace);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.sr-clip {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
overflow: hidden;
|
||||
background: var(--bg, transparent);
|
||||
}
|
||||
|
||||
.sr-stage {
|
||||
display: block;
|
||||
width: 88cqw;
|
||||
max-width: 88cqw;
|
||||
will-change: transform, opacity;
|
||||
}
|
||||
|
||||
.sr-shell {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
min-height: 34cqh;
|
||||
padding: var(--space-3, 5cqh) var(--space-3, 5cqw);
|
||||
overflow: hidden;
|
||||
border: 0.16cqmin solid color-mix(in srgb, var(--sr-accent) 58%, var(--border, #475569));
|
||||
border-radius: var(--radius, 2.4cqmin);
|
||||
background: color-mix(in srgb, var(--surface, #0b1016) 92%, var(--sr-accent));
|
||||
box-shadow:
|
||||
0 3.5cqh 10cqh color-mix(in srgb, var(--bg, #000000) 42%, transparent),
|
||||
inset 0 0 4cqh color-mix(in srgb, var(--sr-accent) 7%, transparent);
|
||||
}
|
||||
|
||||
.sr-prefix {
|
||||
flex: 0 0 auto;
|
||||
margin-right: var(--space-1, 1.8cqw);
|
||||
color: color-mix(in srgb, var(--sr-accent) 78%, var(--fg, #ffffff));
|
||||
font-size: calc(var(--sr-font-size) * 0.74);
|
||||
font-weight: 700;
|
||||
line-height: 1;
|
||||
opacity: 0.78;
|
||||
}
|
||||
|
||||
.sr-text {
|
||||
display: block;
|
||||
min-width: 0;
|
||||
overflow: hidden;
|
||||
color: var(--sr-accent);
|
||||
font-size: var(--sr-font-size);
|
||||
font-weight: 780;
|
||||
line-height: 1;
|
||||
letter-spacing: 0.055em;
|
||||
text-align: center;
|
||||
text-shadow: 0 0 2.8cqh color-mix(in srgb, var(--sr-accent) 34%, transparent);
|
||||
white-space: pre;
|
||||
}
|
||||
|
||||
.sr-stage.sr-clean .sr-shell {
|
||||
min-height: 26cqh;
|
||||
padding: var(--space-2, 3cqh) var(--space-2, 2cqw);
|
||||
border-color: transparent;
|
||||
background: transparent;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.sr-stage.sr-clean .sr-prefix {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div
|
||||
id="scramble-reveal-clip"
|
||||
class="sr-clip clip"
|
||||
data-start="0"
|
||||
data-duration="3"
|
||||
data-track-index="0"
|
||||
>
|
||||
<div class="sr-stage" role="img">
|
||||
<div class="sr-shell">
|
||||
<span class="sr-prefix" aria-hidden="true">>_</span>
|
||||
<span class="sr-text" aria-hidden="true"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/gsap@3.14.2/dist/gsap.min.js"></script>
|
||||
<script>
|
||||
(function () {
|
||||
"use strict";
|
||||
|
||||
var root = document.getElementById("root");
|
||||
var stage = root.querySelector(".sr-stage");
|
||||
var textElement = root.querySelector(".sr-text");
|
||||
var vars =
|
||||
window.__hyperframes && window.__hyperframes.getVariables
|
||||
? window.__hyperframes.getVariables()
|
||||
: {};
|
||||
|
||||
var text = vars.text == null ? "HYPERFRAMES" : String(vars.text);
|
||||
// Each enum choice routes to a DIFFERENT contract token so the
|
||||
// variable stays meaningful under a theme (green/blue/violet must
|
||||
// not collapse into one themed accent).
|
||||
var accentColors = {
|
||||
green: "var(--brand, #71f5a7)",
|
||||
blue: "var(--accent, #61a8ff)",
|
||||
violet: "var(--accent-2, #c5a3ff)",
|
||||
};
|
||||
var accent = Object.prototype.hasOwnProperty.call(accentColors, vars.accent)
|
||||
? vars.accent
|
||||
: "green";
|
||||
var style = vars.style === "clean" ? "clean" : "terminal";
|
||||
var exit = vars.exit === "fade" || vars.exit === "up" ? vars.exit : "none";
|
||||
|
||||
root.style.setProperty("--sr-accent", accentColors[accent]);
|
||||
stage.classList.toggle("sr-clean", style === "clean");
|
||||
stage.setAttribute("aria-label", text);
|
||||
|
||||
var characters = Array.from(text);
|
||||
var fittedCqw = Math.min(11, 118 / Math.max(1, characters.length));
|
||||
root.style.setProperty("--sr-font-size", "min(" + fittedCqw.toFixed(3) + "cqw, 24cqh)");
|
||||
|
||||
var IN_BASE = 1.65;
|
||||
var OUT_BASE = exit === "none" ? 0 : 0.45;
|
||||
var ARRIVAL_BASE = 0.42;
|
||||
var LOCK_TAIL_BASE = 0.15;
|
||||
var STILLNESS = 0.3;
|
||||
var FPS = 30;
|
||||
var duration = Math.max(0.001, parseFloat(root.dataset.duration || "3"));
|
||||
var totalBase = Math.max(0.001, IN_BASE + OUT_BASE);
|
||||
var scale = duration < totalBase ? duration / totalBase : 1;
|
||||
var IN = IN_BASE * scale;
|
||||
var OUT = OUT_BASE * scale;
|
||||
var ARRIVAL = ARRIVAL_BASE * scale;
|
||||
var LOCK_TAIL = LOCK_TAIL_BASE * scale;
|
||||
var HOLD = Math.max(0, duration - (IN + OUT));
|
||||
var HOLD_START = IN;
|
||||
var OUT_START = IN + HOLD;
|
||||
var REVEAL_DURATION = Math.max(0, IN - LOCK_TAIL);
|
||||
var lastFrame = Math.max(1, Math.round(REVEAL_DURATION * FPS));
|
||||
|
||||
// The LCG and all character-state decisions live here. This IIFE
|
||||
// runs once before timeline construction, then only frameTable is
|
||||
// read. Lock frames are monotonic by character index, so the final
|
||||
// target resolves strictly from left to right.
|
||||
var frameTable = (function () {
|
||||
var glyphs = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789#$%&*+?<>";
|
||||
var state = 0x27c0ffee;
|
||||
var firstLockFrame = Math.min(lastFrame, Math.max(1, Math.round(0.2 * FPS * scale)));
|
||||
var lockFrames = characters.map(function (character, index) {
|
||||
if (/\s/.test(character)) return 0;
|
||||
var position = characters.length <= 1 ? 1 : index / (characters.length - 1);
|
||||
return Math.round(firstLockFrame + position * (lastFrame - firstLockFrame));
|
||||
});
|
||||
var rows = [];
|
||||
|
||||
for (var frame = 0; frame <= lastFrame; frame += 1) {
|
||||
var row = characters
|
||||
.map(function (character, index) {
|
||||
if (/\s/.test(character) || frame >= lockFrames[index]) return character;
|
||||
|
||||
state = (Math.imul(1664525, state) + 1013904223) >>> 0;
|
||||
var glyphIndex = state % glyphs.length;
|
||||
var glyph = glyphs.charAt(glyphIndex);
|
||||
if (glyph === character)
|
||||
glyph = glyphs.charAt((glyphIndex + 1) % glyphs.length);
|
||||
return glyph;
|
||||
})
|
||||
.join("");
|
||||
rows.push(row);
|
||||
}
|
||||
|
||||
return rows;
|
||||
})();
|
||||
|
||||
gsap.set(stage, { opacity: 0, x: "-4cqw", y: "2.4cqh" });
|
||||
textElement.textContent = frameTable[0];
|
||||
|
||||
var tl = gsap.timeline({ paused: true });
|
||||
|
||||
// IN: independently eased axes form the arrival arc. The authored
|
||||
// frame rows then lock the target from left to right at 30 fps.
|
||||
tl.to(stage, { opacity: 1, duration: ARRIVAL, ease: "power2.out" }, 0);
|
||||
tl.to(stage, { x: "0cqw", duration: ARRIVAL, ease: "power3.out" }, 0);
|
||||
tl.to(stage, { y: "0cqh", duration: ARRIVAL, ease: "sine.inOut" }, 0);
|
||||
frameTable.forEach(function (row, frame) {
|
||||
tl.set(textElement, { textContent: row }, frame / FPS);
|
||||
});
|
||||
|
||||
// HOLD: finite drift ends with authored stillness before departure.
|
||||
var driftHalf = Math.max(0, HOLD - STILLNESS) / 2;
|
||||
if (driftHalf > 0) {
|
||||
tl.to(
|
||||
stage,
|
||||
{
|
||||
y: "-0.55cqh",
|
||||
duration: driftHalf,
|
||||
ease: "sine.inOut",
|
||||
yoyo: true,
|
||||
repeat: 1,
|
||||
},
|
||||
HOLD_START,
|
||||
);
|
||||
}
|
||||
|
||||
// OUT: optional departure; exit none holds until the frame cuts.
|
||||
// The up exit keeps the original curved arc departure.
|
||||
if (exit === "up") {
|
||||
tl.to(stage, { x: "5cqw", duration: OUT, ease: "power2.in" }, OUT_START);
|
||||
tl.to(stage, { y: "-3.5cqh", duration: OUT, ease: "sine.inOut" }, OUT_START);
|
||||
tl.to(stage, { opacity: 0, duration: OUT, ease: "power2.in" }, OUT_START);
|
||||
} else if (exit === "fade") {
|
||||
tl.to(stage, { opacity: 0, duration: OUT, ease: "power2.in" }, OUT_START);
|
||||
}
|
||||
|
||||
tl.seek(0);
|
||||
window.__timelines = window.__timelines || {};
|
||||
window.__timelines["scramble-reveal"] = tl;
|
||||
})();
|
||||
</script>
|
||||
</div>
|
||||
</template>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user