mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-04 07:19:52 +00:00
* feat(catalog): put the variables panel back, on payloads The panel drove its preview by loading an .html from docs/public, a type the host does not publish, so it showed an empty frame in production and was parked when the catalog was re-landed. It now mounts the same JSON payload the plain player uses and re-mounts it as values change, injecting them as window.__hfVariables into the composition head before any of its scripts run, which is where the runtime reads overrides from. Doing it in the markup rather than after load is what stops the composition initialising with the wrong values first. 172 items with variables get the panel back; the playhead carries across a change so a tweak mid-shot does not jump back to frame zero. * fix(docs): drop the unused url form and the needless escapes * fix(docs): the panel cannot reference a binding beside the export * feat(catalog): make importing an SVG the obvious move A reader arrives at this control with a shape, not with path data, and the panel asked for the coordinates first. Import is now the primary action in a drop target you can see is a drop target, and the raw path sits behind a disclosure for anyone who wants it. * feat(cli): let a fruitless catalog search report the gap An agent that searches by meaning and finds nothing worth installing knows something we do not: the name of a move the catalog is missing. There was no way to tell us, so that knowledge was lost at the end of every run. hyperframes feedback --search-miss "<query>" --wanted "<the move>" records it. It carries no rating, so it never lands in the rating metric, and it is a separate deliberate command rather than something catalog --query does on its own: plain search still sends nothing, which is what the CLI promises. --rating stops being required at the arg level, since a miss has no rating to give. The check moved into the run body, where an absent one is now handled rather than crashing on undefined. * feat(cli): carry tuned variable values into the install snippet Someone who tunes a block on its catalog page had no way to keep those values: the install command was the same one everybody gets, and the tuning stayed on the page. hyperframes add <item> --vars '<json>' now prints a mount element carrying data-variable-values, so the values land where the block is used. They ride on the host rather than being written into the installed file. That keeps the composition on disk byte-identical to the registry's, so a later reinstall can still tell an edit from an update, and it lets two mounts of the same block carry different values. * fix(catalog): serve the item's own directory so runtime paths resolve Some compositions assemble their asset URLs at run time — "compositions/components/" + texture + ".png" for the texture masks, a font the compiler pulled into _remote_media — and no scan of the markup can see a string that does not exist until a script concatenates it. Those items either rendered black or were dropped to a video that had never been uploaded. Each item that needs it now has its prepared directory published, and its payload carries a <base> pointing at it, so any relative path the composition invents resolves. caption-texture renders its masks again, and variable-font-flex has a preview at all for the first time: its MP4 and poster are both 403. Both layouts are published, because which one a composition asks for differs per item, and a directory only earns that if it is under 2 MB. The 12 MB texture sheet keeps the recorded video it already had. * fix(catalog): let the variables panel actually drive the composition Every control on the panel was inert. The values reached the composition and nothing repainted, because the payload had already been compiled: compiling inlines a mounted component and resolves its variables into the markup and CSS, so by the time a reader turns a knob there is nothing left to change. An item that declares variables now ships uncompiled, keeping the mount the runtime loads at run time, which is the only state where data-variable-values still means anything. The component travels inline as a data URI rather than a sibling file, because .html is the one type the docs host will not publish. The demo's own pinned values come off, so the reader's choices reach the mount instead of losing to the values the demo picked to show itself off. Measured on the rendered frame rather than the DOM: green rgb(98,207,144), blue rgb(6,6,199), violet rgb(177,147,230), and back to green. docs/public/catalog drops from 48 MB to 35 MB along the way, since an uncompiled payload carries far less than an inlined one. * feat(catalog): keep variable changes in the url A reader who tuned a piece lost it on reload, and had nothing to send anyone. The values now live in the query string, scoped by composition id so two links never read each other,and only the ones that differ from the defaults are written, so changing one knob gives a short URL rather than every variable spelled out. replaceState rather than pushState: dragging a slider should not leave a trail of history entries. An unreadable value is ignored rather than thrown, so a truncated or hand-edited link opens the piece at its defaults. * fix(catalog): only rewrite the url when a value actually changed * refactor(catalog): memoise the declared defaults on their content * feat(catalog): offer an install command carrying the tuned values The Install block is generated before anyone touches a knob, so it can only ever print the plain command. Someone who spent a minute tuning a piece copied it and got the defaults back. The panel now carries its own command in the Snippet tab, with --vars holding exactly the values that differ. An untouched piece still offers the same short command, so nothing gets noisier for the common case. * fix(catalog): a piece with nothing to render is a skip, not a failure caption-blend-difference is a stylesheet and a paragraph of prose — a class you add to your own captions, with no standalone scene to show. The generator treated that as a build failure, so every run ended by reporting something broken when nothing was. It now reports the shape it is and keeps its recorded video, which is the only honest preview such an item has. A genuine render failure still throws. * fix(catalog): restore variables from the url on a cold load A shared link opened at the defaults. The first render happens on the server, where there is no window to read the query string from, and React then hydrates against that markup and never revisits it — so the values only appeared once you touched a control. The URL is read again after mount, which is the first moment it exists. The value is also escaped once now rather than twice: URLSearchParams already decodes on the way out, and decoding a second time turned an SVG path full of percent-escapes into something that no longer parsed, besides doubling the length of every link. * fix(catalog): mount the preview with the values a link carried The frame was built from the declared defaults and the shared values were posted to it afterwards, which is too late for anything the composition reads once at init: a path arrived after the mark had already been drawn from the default one, so a link looked right in the panel and wrong on screen. * feat(catalog): the install command follows the values you tuned Copying the Install line gave the plain command back, because that block is generated before anyone touches a knob and had no way to know what changed. The tuned command only existed in the panel Snippet tab, which is not where anyone looks for it. The line now reads the same query string the panel writes, so the two agree without either component knowing the other exists, and a shared link carries the right command too. replaceState fires no event, so the panel announces its own writes. * fix(catalog): send a text variable to the preview once it is finished Every other control in the explorer reports a whole value on every event: a slider at any position is a position, a swatch is a colour. A text field is not. Typing v3 into a badge posted v first, so the preview remounted and rendered a composition built from half a word. The post now waits while a text field has focus and goes out when the edit is committed, with Enter or by clicking away. The field itself is unchanged and still tracks every keystroke. --------- Co-authored-by: Miguel Angel Simon Sierra <miguelangelsi07@gmail.com>
1003 lines
34 KiB
Plaintext
1003 lines
34 KiB
Plaintext
---
|
|
title: "Sticky Mock Swap"
|
|
description: "A pinned product mock cross-fades through accent-tinted feature states while matching captions rise, hold, and exit beside it."
|
|
---
|
|
|
|
import { InstallCommand } from "/snippets/install-command.jsx";
|
|
import { VariablesExplorer } from "/snippets/variables-explorer.jsx";
|
|
|
|
<VariablesExplorer
|
|
previewSrc="/public/catalog/components/sticky-mock-swap.json"
|
|
compositionId="sticky-mock-swap"
|
|
compositionSrc="compositions/components/sticky-mock-swap.html"
|
|
variables={[{"id":"captions","type":"string","role":"content","label":"Captions","description":"Comma-separated feature captions shown beside the pinned mock.","default":"Instant previews,Zero config,Ship on Friday"},{"id":"accent","type":"enum","role":"style","label":"Accent","description":"Accent tint used across the mock states.","default":"violet","options":[{"value":"green","label":"Green"},{"value":"blue","label":"Blue"},{"value":"violet","label":"Violet"}]}]}
|
|
>
|
|
|
|
```html sticky-mock-swap.html
|
|
<!doctype html>
|
|
<!--
|
|
sticky-mock-swap: HyperFrames video primitive (product-demo / demonstrate)
|
|
|
|
Concept: a product mock stays pinned while captions advance beside it. Each
|
|
caption rises along a shallow arc, holds, pauses before dismissal, then exits
|
|
upward along a second arc. At every caption threshold, only the mock content
|
|
cross-fades to the corresponding accent-tinted skeleton state.
|
|
|
|
Variables:
|
|
- captions (comma-separated string): feature captions. Whitespace and empty
|
|
entries are removed, with the declared default used when none remain.
|
|
- accent (green | blue | violet): tint shared by all mock states.
|
|
|
|
Envelope (caption-count driven, never timeScale):
|
|
PHASE = D / parsed caption count.
|
|
IN_BASE = 0.38s per phase for the caption rise and mock cross-fade.
|
|
HOLD = elastic per phase. Longer mounts stretch only this still-readable
|
|
interval, with a subtle seek-driven pulse inside the pinned mock.
|
|
OUT_BASE = 0.28s exit-delay plus 0.32s caption exit per phase.
|
|
If a phase is shorter than the fixed motion envelope, IN and OUT compress
|
|
proportionally and HOLD becomes zero. At the default D=6 and three captions,
|
|
the 0.28s stillness before each exit stays inside the 0.2s to 0.4s house rule.
|
|
|
|
Mount contract: this is a template-wrapped sub-composition. The runtime clones
|
|
only template contents. #root fills the host-owned box, has no data-width or
|
|
data-height, and establishes the cqw/cqh basis for every internal measurement.
|
|
One paused timeline is registered under the hardcoded sticky-mock-swap id.
|
|
-->
|
|
<html
|
|
lang="en"
|
|
data-composition-id="sticky-mock-swap"
|
|
data-composition-duration="6"
|
|
data-composition-variables='[
|
|
{ "id": "captions", "type": "string", "role": "content", "label": "Captions", "description": "Comma-separated feature captions shown beside the pinned mock.", "default": "Instant previews,Zero config,Ship on Friday" },
|
|
{ "id": "accent", "type": "enum", "role": "style", "label": "Accent", "description": "Accent tint used across the mock states.", "default": "violet", "options": [{ "value": "green", "label": "Green" }, { "value": "blue", "label": "Blue" }, { "value": "violet", "label": "Violet" }] }
|
|
]'
|
|
>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Sticky Mock Swap</title>
|
|
</head>
|
|
<body>
|
|
<template>
|
|
<div id="root" data-composition-id="sticky-mock-swap" data-duration="6" data-fps="30">
|
|
<style>
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#root {
|
|
position: absolute;
|
|
inset: 0;
|
|
overflow: hidden;
|
|
container-type: size;
|
|
isolation: isolate;
|
|
background: var(--bg, #0b0c0e);
|
|
color: var(--fg, #f8fafc);
|
|
font-family: var(--font-body, Inter, system-ui, sans-serif);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.sms-clip {
|
|
position: absolute;
|
|
inset: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.sms-shell {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
|
|
align-items: center;
|
|
gap: 5cqw;
|
|
padding: 8cqh 7cqw;
|
|
}
|
|
|
|
.sms-mock {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 70cqh;
|
|
overflow: hidden;
|
|
border: 0.12cqmin solid color-mix(in srgb, var(--border, #334155) 74%, transparent);
|
|
border-radius: 2.8cqmin;
|
|
background: var(--surface, #121722);
|
|
box-shadow: 0 4cqh 10cqh color-mix(in srgb, #000 46%, transparent);
|
|
}
|
|
|
|
.sms-states,
|
|
.sms-state {
|
|
position: absolute;
|
|
inset: 0;
|
|
}
|
|
|
|
.sms-state {
|
|
--sms-live: 0.64;
|
|
display: grid;
|
|
grid-template-rows: 8cqh minmax(0, 1fr);
|
|
overflow: hidden;
|
|
opacity: 0;
|
|
background: color-mix(in srgb, var(--surface, #121722) 94%, var(--sms-accent));
|
|
}
|
|
|
|
.sms-toolbar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0 2.2cqw;
|
|
border-bottom: 0.1cqmin solid
|
|
color-mix(in srgb, var(--border, #334155) 62%, transparent);
|
|
background: color-mix(in srgb, #0f131c 92%, var(--sms-accent));
|
|
}
|
|
|
|
.sms-dots {
|
|
display: flex;
|
|
gap: 0.55cqw;
|
|
}
|
|
|
|
.sms-dots i {
|
|
width: 0.62cqw;
|
|
aspect-ratio: 1;
|
|
border-radius: 50%;
|
|
background: color-mix(in srgb, var(--muted, #94a3b8) 46%, transparent);
|
|
}
|
|
|
|
.sms-status {
|
|
width: 7.4cqw;
|
|
height: 1.2cqh;
|
|
border-radius: 1cqmin;
|
|
opacity: var(--sms-live);
|
|
background: var(--sms-accent);
|
|
}
|
|
|
|
.sms-window {
|
|
display: grid;
|
|
grid-template-columns: 24% minmax(0, 1fr);
|
|
min-height: 0;
|
|
}
|
|
|
|
.sms-sidebar {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2.3cqh;
|
|
padding: 3.2cqh 1.8cqw;
|
|
border-right: 0.1cqmin solid color-mix(in srgb, var(--border, #334155) 52%, transparent);
|
|
background: color-mix(in srgb, #0e121a 94%, var(--sms-accent));
|
|
}
|
|
|
|
.sms-sidebar i,
|
|
.sms-title,
|
|
.sms-subtitle,
|
|
.sms-block {
|
|
display: block;
|
|
border-radius: 0.7cqmin;
|
|
background: color-mix(in srgb, var(--muted, #94a3b8) 20%, transparent);
|
|
}
|
|
|
|
.sms-sidebar i {
|
|
width: 82%;
|
|
height: 1.2cqh;
|
|
}
|
|
|
|
.sms-sidebar i:first-child {
|
|
width: 100%;
|
|
background: color-mix(in srgb, var(--sms-accent) 54%, transparent);
|
|
}
|
|
|
|
.sms-main {
|
|
position: relative;
|
|
min-width: 0;
|
|
padding: 4.4cqh 2.5cqw;
|
|
}
|
|
|
|
.sms-title {
|
|
width: 46%;
|
|
height: 2.1cqh;
|
|
background: color-mix(in srgb, var(--fg, #f8fafc) 44%, transparent);
|
|
}
|
|
|
|
.sms-subtitle {
|
|
width: 68%;
|
|
height: 1.2cqh;
|
|
margin-top: 1.8cqh;
|
|
}
|
|
|
|
.sms-canvas {
|
|
position: absolute;
|
|
inset: 11.5cqh 2.5cqw 4.2cqh;
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
grid-template-rows: repeat(2, minmax(0, 1fr));
|
|
gap: 1.5cqmin;
|
|
}
|
|
|
|
.sms-block {
|
|
position: relative;
|
|
overflow: hidden;
|
|
border: 0.1cqmin solid color-mix(in srgb, var(--border, #334155) 54%, transparent);
|
|
background: color-mix(in srgb, #263044 54%, transparent);
|
|
}
|
|
|
|
.sms-block::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 12%;
|
|
right: 12%;
|
|
bottom: 16%;
|
|
height: 0.8cqh;
|
|
border-radius: 1cqmin;
|
|
opacity: var(--sms-live);
|
|
background: var(--sms-accent);
|
|
}
|
|
|
|
.sms-state--2 .sms-canvas {
|
|
grid-template-columns: 1fr;
|
|
grid-template-rows: repeat(4, minmax(0, 1fr));
|
|
}
|
|
|
|
.sms-state--2 .sms-block::after {
|
|
left: 8%;
|
|
right: 35%;
|
|
bottom: 28%;
|
|
}
|
|
|
|
.sms-state--3 .sms-canvas {
|
|
grid-template-columns: 1.45fr 0.55fr;
|
|
grid-template-rows: repeat(3, minmax(0, 1fr));
|
|
}
|
|
|
|
.sms-state--3 .sms-block:first-child {
|
|
grid-row: 1 / 4;
|
|
}
|
|
|
|
.sms-state--3 .sms-block::after {
|
|
left: 10%;
|
|
right: 18%;
|
|
bottom: 18%;
|
|
}
|
|
|
|
.sms-captions {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 32cqh;
|
|
}
|
|
|
|
.sms-caption {
|
|
position: absolute;
|
|
inset: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
max-width: 34cqw;
|
|
color: var(--fg, #f8fafc);
|
|
font-family: var(--font-display, Inter, system-ui, sans-serif);
|
|
font-size: 5.8cqmin;
|
|
font-weight: 720;
|
|
line-height: 1.04;
|
|
letter-spacing: -0.04em;
|
|
overflow-wrap: anywhere;
|
|
opacity: 0;
|
|
will-change: transform, opacity;
|
|
}
|
|
|
|
.sms-caption::before {
|
|
content: "";
|
|
flex: 0 0 auto;
|
|
align-self: center;
|
|
width: 0.75cqw;
|
|
height: 9cqh;
|
|
margin-right: 1.5cqw;
|
|
border-radius: 1cqmin;
|
|
background: var(--sms-accent);
|
|
box-shadow: 0 0 2cqmin color-mix(in srgb, var(--sms-accent) 48%, transparent);
|
|
}
|
|
</style>
|
|
|
|
<div
|
|
id="sticky-mock-swap-clip"
|
|
class="sms-clip clip"
|
|
data-start="0"
|
|
data-duration="6"
|
|
data-track-index="0"
|
|
>
|
|
<div class="sms-shell">
|
|
<div class="sms-mock" aria-hidden="true">
|
|
<div class="sms-states"></div>
|
|
</div>
|
|
<div class="sms-captions" aria-label="Feature captions"></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 captionsHost = root.querySelector(".sms-captions");
|
|
var statesHost = root.querySelector(".sms-states");
|
|
var vars =
|
|
window.__hyperframes && window.__hyperframes.getVariables
|
|
? window.__hyperframes.getVariables()
|
|
: {};
|
|
|
|
var DEFAULT_CAPTIONS = ["Instant previews", "Zero config", "Ship on Friday"];
|
|
var captionsSource =
|
|
vars.captions == null ? DEFAULT_CAPTIONS.join(",") : String(vars.captions);
|
|
var captions = captionsSource.split(",").reduce(function (parsed, token) {
|
|
var caption = token.trim();
|
|
if (caption) parsed.push(caption);
|
|
return parsed;
|
|
}, []);
|
|
if (captions.length === 0) captions = DEFAULT_CAPTIONS.slice();
|
|
|
|
var accent =
|
|
vars.accent === "green" || vars.accent === "blue" || vars.accent === "violet"
|
|
? vars.accent
|
|
: "violet";
|
|
var accentColors = {
|
|
green: "var(--brand, #34d399)",
|
|
blue: "var(--accent, #38bdf8)",
|
|
violet: "var(--accent-2, #a78bfa)",
|
|
};
|
|
root.style.setProperty("--sms-accent", accentColors[accent]);
|
|
|
|
var captionElements = [];
|
|
var stateElements = [];
|
|
|
|
captions.forEach(function (captionText, index) {
|
|
var caption = document.createElement("div");
|
|
caption.className = "sms-caption";
|
|
caption.textContent = captionText;
|
|
captionsHost.appendChild(caption);
|
|
captionElements.push(caption);
|
|
|
|
var state = document.createElement("div");
|
|
state.className = "sms-state sms-state--" + ((index % 3) + 1);
|
|
state.setAttribute("aria-hidden", "true");
|
|
state.innerHTML =
|
|
'<div class="sms-toolbar"><span class="sms-dots"><i></i><i></i><i></i></span><span class="sms-status"></span></div>' +
|
|
'<div class="sms-window"><aside class="sms-sidebar"><i></i><i></i><i></i><i></i></aside>' +
|
|
'<main class="sms-main"><span class="sms-title"></span><span class="sms-subtitle"></span>' +
|
|
'<div class="sms-canvas"><i class="sms-block"></i><i class="sms-block"></i><i class="sms-block"></i><i class="sms-block"></i></div></main></div>';
|
|
statesHost.appendChild(state);
|
|
stateElements.push(state);
|
|
});
|
|
|
|
var durationValue = parseFloat(root.dataset.duration || "6");
|
|
var duration = Number.isFinite(durationValue) ? Math.max(0.001, durationValue) : 6;
|
|
|
|
// Caption count owns the threshold grid. Longer durations add only
|
|
// to each phase's HOLD, never by scaling the completed timeline.
|
|
var phaseDuration = duration / captions.length;
|
|
var RISE_BASE = 0.38;
|
|
var EXIT_DELAY_BASE = 0.28;
|
|
var EXIT_BASE = 0.32;
|
|
var MOTION_BASE = RISE_BASE + EXIT_DELAY_BASE + EXIT_BASE;
|
|
var motionScale = phaseDuration < MOTION_BASE ? phaseDuration / MOTION_BASE : 1;
|
|
var RISE = RISE_BASE * motionScale;
|
|
var EXIT_DELAY = EXIT_DELAY_BASE * motionScale;
|
|
var EXIT = EXIT_BASE * motionScale;
|
|
var HOLD = Math.max(0, phaseDuration - RISE - EXIT_DELAY - EXIT);
|
|
var SWAP = Math.min(0.28 * motionScale, phaseDuration * 0.4);
|
|
|
|
captionElements.forEach(function (caption, index) {
|
|
gsap.set(caption, { opacity: 0, x: "-1.2cqw", y: "3.6cqh" });
|
|
gsap.set(stateElements[index], { opacity: index === 0 ? 1 : 0, "--sms-live": 0.64 });
|
|
});
|
|
|
|
var tl = gsap.timeline({ paused: true });
|
|
|
|
captionElements.forEach(function (caption, index) {
|
|
var phaseStart = index * phaseDuration;
|
|
var riseArc = RISE * 0.72;
|
|
var exitStart = phaseStart + RISE + HOLD + EXIT_DELAY;
|
|
var exitArc = EXIT * 0.32;
|
|
|
|
// IN: two authored segments form a shallow arrival arc.
|
|
tl.fromTo(
|
|
caption,
|
|
{ opacity: 0, x: "-1.2cqw", y: "3.6cqh" },
|
|
{
|
|
opacity: 1,
|
|
x: "0.45cqw",
|
|
y: "-0.28cqh",
|
|
duration: riseArc,
|
|
ease: "power2.out",
|
|
},
|
|
phaseStart,
|
|
);
|
|
tl.to(
|
|
caption,
|
|
{
|
|
x: "0cqw",
|
|
y: "0cqh",
|
|
duration: RISE - riseArc,
|
|
ease: "power2.out",
|
|
},
|
|
phaseStart + riseArc,
|
|
);
|
|
|
|
if (index > 0) {
|
|
tl.to(
|
|
stateElements[index - 1],
|
|
{ opacity: 0, duration: SWAP, ease: "power2.in" },
|
|
phaseStart,
|
|
);
|
|
tl.fromTo(
|
|
stateElements[index],
|
|
{ opacity: 0 },
|
|
{ opacity: 1, duration: SWAP, ease: "power2.out" },
|
|
phaseStart,
|
|
);
|
|
}
|
|
|
|
// HOLD: the mock content breathes without moving the pinned panel.
|
|
if (HOLD >= 0.4) {
|
|
tl.to(
|
|
stateElements[index],
|
|
{
|
|
"--sms-live": 0.9,
|
|
duration: HOLD / 2,
|
|
ease: "sine.inOut",
|
|
yoyo: true,
|
|
repeat: 1,
|
|
},
|
|
phaseStart + RISE,
|
|
);
|
|
}
|
|
|
|
// OUT: EXIT_DELAY is empty stillness, then two segments arc upward.
|
|
tl.to(
|
|
caption,
|
|
{
|
|
x: "0.42cqw",
|
|
y: "-0.9cqh",
|
|
duration: exitArc,
|
|
ease: "power2.in",
|
|
},
|
|
exitStart,
|
|
);
|
|
tl.to(
|
|
caption,
|
|
{
|
|
opacity: 0,
|
|
x: "-1.1cqw",
|
|
y: "-4.5cqh",
|
|
duration: EXIT - exitArc,
|
|
ease: "power2.in",
|
|
},
|
|
exitStart + exitArc,
|
|
);
|
|
});
|
|
|
|
tl.seek(0);
|
|
window.__timelines = window.__timelines || {};
|
|
window.__timelines["sticky-mock-swap"] = tl;
|
|
})();
|
|
</script>
|
|
</div>
|
|
</template>
|
|
</body>
|
|
</html>
|
|
```
|
|
|
|
</VariablesExplorer>
|
|
|
|
## Install
|
|
|
|
<InstallCommand command="npx hyperframes add sticky-mock-swap" item="sticky-mock-swap" />
|
|
|
|
That writes one file: `compositions/components/sticky-mock-swap.html`.
|
|
|
|
## Paste it into your composition
|
|
|
|
Open `compositions/components/sticky-mock-swap.html` and copy what is inside into your own composition.
|
|
|
|
A component has no size or duration of its own. It takes both from the composition
|
|
you paste it into.
|
|
|
|
## Variables
|
|
|
|
Every one of these has a default, so the piece works untouched. Set the ones you
|
|
want to change on the element:
|
|
|
|
| Variable | Default | Accepts | What it does |
|
|
| --- | --- | --- | --- |
|
|
| `captions` | `Instant previews,Zero config,Ship on Friday` | string | Comma-separated feature captions shown beside the pinned mock. |
|
|
| `accent` | `violet` | `green`, `blue`, `violet` | Accent tint used across the mock states. |
|
|
|
|
Set them with `data-variable-values` on the element that mounts it. These are the
|
|
defaults, so this behaves exactly like the preview above until you change one:
|
|
|
|
```html wrap
|
|
<div
|
|
data-composition-id="sticky-mock-swap"
|
|
data-composition-src="compositions/components/sticky-mock-swap.html"
|
|
data-variable-values='{"captions":"Instant previews,Zero config,Ship on Friday","accent":"violet"}'
|
|
></div>
|
|
```
|
|
|
|
## Source
|
|
|
|
<Accordion title={`sticky-mock-swap.html`}>
|
|
|
|
```html
|
|
<!doctype html>
|
|
<!--
|
|
sticky-mock-swap: HyperFrames video primitive (product-demo / demonstrate)
|
|
|
|
Concept: a product mock stays pinned while captions advance beside it. Each
|
|
caption rises along a shallow arc, holds, pauses before dismissal, then exits
|
|
upward along a second arc. At every caption threshold, only the mock content
|
|
cross-fades to the corresponding accent-tinted skeleton state.
|
|
|
|
Variables:
|
|
- captions (comma-separated string): feature captions. Whitespace and empty
|
|
entries are removed, with the declared default used when none remain.
|
|
- accent (green | blue | violet): tint shared by all mock states.
|
|
|
|
Envelope (caption-count driven, never timeScale):
|
|
PHASE = D / parsed caption count.
|
|
IN_BASE = 0.38s per phase for the caption rise and mock cross-fade.
|
|
HOLD = elastic per phase. Longer mounts stretch only this still-readable
|
|
interval, with a subtle seek-driven pulse inside the pinned mock.
|
|
OUT_BASE = 0.28s exit-delay plus 0.32s caption exit per phase.
|
|
If a phase is shorter than the fixed motion envelope, IN and OUT compress
|
|
proportionally and HOLD becomes zero. At the default D=6 and three captions,
|
|
the 0.28s stillness before each exit stays inside the 0.2s to 0.4s house rule.
|
|
|
|
Mount contract: this is a template-wrapped sub-composition. The runtime clones
|
|
only template contents. #root fills the host-owned box, has no data-width or
|
|
data-height, and establishes the cqw/cqh basis for every internal measurement.
|
|
One paused timeline is registered under the hardcoded sticky-mock-swap id.
|
|
-->
|
|
<html
|
|
lang="en"
|
|
data-composition-id="sticky-mock-swap"
|
|
data-composition-duration="6"
|
|
data-composition-variables='[
|
|
{ "id": "captions", "type": "string", "role": "content", "label": "Captions", "description": "Comma-separated feature captions shown beside the pinned mock.", "default": "Instant previews,Zero config,Ship on Friday" },
|
|
{ "id": "accent", "type": "enum", "role": "style", "label": "Accent", "description": "Accent tint used across the mock states.", "default": "violet", "options": [{ "value": "green", "label": "Green" }, { "value": "blue", "label": "Blue" }, { "value": "violet", "label": "Violet" }] }
|
|
]'
|
|
>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Sticky Mock Swap</title>
|
|
</head>
|
|
<body>
|
|
<template>
|
|
<div id="root" data-composition-id="sticky-mock-swap" data-duration="6" data-fps="30">
|
|
<style>
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#root {
|
|
position: absolute;
|
|
inset: 0;
|
|
overflow: hidden;
|
|
container-type: size;
|
|
isolation: isolate;
|
|
background: var(--bg, #0b0c0e);
|
|
color: var(--fg, #f8fafc);
|
|
font-family: var(--font-body, Inter, system-ui, sans-serif);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.sms-clip {
|
|
position: absolute;
|
|
inset: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.sms-shell {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
|
|
align-items: center;
|
|
gap: 5cqw;
|
|
padding: 8cqh 7cqw;
|
|
}
|
|
|
|
.sms-mock {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 70cqh;
|
|
overflow: hidden;
|
|
border: 0.12cqmin solid color-mix(in srgb, var(--border, #334155) 74%, transparent);
|
|
border-radius: 2.8cqmin;
|
|
background: var(--surface, #121722);
|
|
box-shadow: 0 4cqh 10cqh color-mix(in srgb, #000 46%, transparent);
|
|
}
|
|
|
|
.sms-states,
|
|
.sms-state {
|
|
position: absolute;
|
|
inset: 0;
|
|
}
|
|
|
|
.sms-state {
|
|
--sms-live: 0.64;
|
|
display: grid;
|
|
grid-template-rows: 8cqh minmax(0, 1fr);
|
|
overflow: hidden;
|
|
opacity: 0;
|
|
background: color-mix(in srgb, var(--surface, #121722) 94%, var(--sms-accent));
|
|
}
|
|
|
|
.sms-toolbar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0 2.2cqw;
|
|
border-bottom: 0.1cqmin solid
|
|
color-mix(in srgb, var(--border, #334155) 62%, transparent);
|
|
background: color-mix(in srgb, #0f131c 92%, var(--sms-accent));
|
|
}
|
|
|
|
.sms-dots {
|
|
display: flex;
|
|
gap: 0.55cqw;
|
|
}
|
|
|
|
.sms-dots i {
|
|
width: 0.62cqw;
|
|
aspect-ratio: 1;
|
|
border-radius: 50%;
|
|
background: color-mix(in srgb, var(--muted, #94a3b8) 46%, transparent);
|
|
}
|
|
|
|
.sms-status {
|
|
width: 7.4cqw;
|
|
height: 1.2cqh;
|
|
border-radius: 1cqmin;
|
|
opacity: var(--sms-live);
|
|
background: var(--sms-accent);
|
|
}
|
|
|
|
.sms-window {
|
|
display: grid;
|
|
grid-template-columns: 24% minmax(0, 1fr);
|
|
min-height: 0;
|
|
}
|
|
|
|
.sms-sidebar {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2.3cqh;
|
|
padding: 3.2cqh 1.8cqw;
|
|
border-right: 0.1cqmin solid color-mix(in srgb, var(--border, #334155) 52%, transparent);
|
|
background: color-mix(in srgb, #0e121a 94%, var(--sms-accent));
|
|
}
|
|
|
|
.sms-sidebar i,
|
|
.sms-title,
|
|
.sms-subtitle,
|
|
.sms-block {
|
|
display: block;
|
|
border-radius: 0.7cqmin;
|
|
background: color-mix(in srgb, var(--muted, #94a3b8) 20%, transparent);
|
|
}
|
|
|
|
.sms-sidebar i {
|
|
width: 82%;
|
|
height: 1.2cqh;
|
|
}
|
|
|
|
.sms-sidebar i:first-child {
|
|
width: 100%;
|
|
background: color-mix(in srgb, var(--sms-accent) 54%, transparent);
|
|
}
|
|
|
|
.sms-main {
|
|
position: relative;
|
|
min-width: 0;
|
|
padding: 4.4cqh 2.5cqw;
|
|
}
|
|
|
|
.sms-title {
|
|
width: 46%;
|
|
height: 2.1cqh;
|
|
background: color-mix(in srgb, var(--fg, #f8fafc) 44%, transparent);
|
|
}
|
|
|
|
.sms-subtitle {
|
|
width: 68%;
|
|
height: 1.2cqh;
|
|
margin-top: 1.8cqh;
|
|
}
|
|
|
|
.sms-canvas {
|
|
position: absolute;
|
|
inset: 11.5cqh 2.5cqw 4.2cqh;
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
grid-template-rows: repeat(2, minmax(0, 1fr));
|
|
gap: 1.5cqmin;
|
|
}
|
|
|
|
.sms-block {
|
|
position: relative;
|
|
overflow: hidden;
|
|
border: 0.1cqmin solid color-mix(in srgb, var(--border, #334155) 54%, transparent);
|
|
background: color-mix(in srgb, #263044 54%, transparent);
|
|
}
|
|
|
|
.sms-block::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 12%;
|
|
right: 12%;
|
|
bottom: 16%;
|
|
height: 0.8cqh;
|
|
border-radius: 1cqmin;
|
|
opacity: var(--sms-live);
|
|
background: var(--sms-accent);
|
|
}
|
|
|
|
.sms-state--2 .sms-canvas {
|
|
grid-template-columns: 1fr;
|
|
grid-template-rows: repeat(4, minmax(0, 1fr));
|
|
}
|
|
|
|
.sms-state--2 .sms-block::after {
|
|
left: 8%;
|
|
right: 35%;
|
|
bottom: 28%;
|
|
}
|
|
|
|
.sms-state--3 .sms-canvas {
|
|
grid-template-columns: 1.45fr 0.55fr;
|
|
grid-template-rows: repeat(3, minmax(0, 1fr));
|
|
}
|
|
|
|
.sms-state--3 .sms-block:first-child {
|
|
grid-row: 1 / 4;
|
|
}
|
|
|
|
.sms-state--3 .sms-block::after {
|
|
left: 10%;
|
|
right: 18%;
|
|
bottom: 18%;
|
|
}
|
|
|
|
.sms-captions {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 32cqh;
|
|
}
|
|
|
|
.sms-caption {
|
|
position: absolute;
|
|
inset: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
max-width: 34cqw;
|
|
color: var(--fg, #f8fafc);
|
|
font-family: var(--font-display, Inter, system-ui, sans-serif);
|
|
font-size: 5.8cqmin;
|
|
font-weight: 720;
|
|
line-height: 1.04;
|
|
letter-spacing: -0.04em;
|
|
overflow-wrap: anywhere;
|
|
opacity: 0;
|
|
will-change: transform, opacity;
|
|
}
|
|
|
|
.sms-caption::before {
|
|
content: "";
|
|
flex: 0 0 auto;
|
|
align-self: center;
|
|
width: 0.75cqw;
|
|
height: 9cqh;
|
|
margin-right: 1.5cqw;
|
|
border-radius: 1cqmin;
|
|
background: var(--sms-accent);
|
|
box-shadow: 0 0 2cqmin color-mix(in srgb, var(--sms-accent) 48%, transparent);
|
|
}
|
|
</style>
|
|
|
|
<div
|
|
id="sticky-mock-swap-clip"
|
|
class="sms-clip clip"
|
|
data-start="0"
|
|
data-duration="6"
|
|
data-track-index="0"
|
|
>
|
|
<div class="sms-shell">
|
|
<div class="sms-mock" aria-hidden="true">
|
|
<div class="sms-states"></div>
|
|
</div>
|
|
<div class="sms-captions" aria-label="Feature captions"></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 captionsHost = root.querySelector(".sms-captions");
|
|
var statesHost = root.querySelector(".sms-states");
|
|
var vars =
|
|
window.__hyperframes && window.__hyperframes.getVariables
|
|
? window.__hyperframes.getVariables()
|
|
: {};
|
|
|
|
var DEFAULT_CAPTIONS = ["Instant previews", "Zero config", "Ship on Friday"];
|
|
var captionsSource =
|
|
vars.captions == null ? DEFAULT_CAPTIONS.join(",") : String(vars.captions);
|
|
var captions = captionsSource.split(",").reduce(function (parsed, token) {
|
|
var caption = token.trim();
|
|
if (caption) parsed.push(caption);
|
|
return parsed;
|
|
}, []);
|
|
if (captions.length === 0) captions = DEFAULT_CAPTIONS.slice();
|
|
|
|
var accent =
|
|
vars.accent === "green" || vars.accent === "blue" || vars.accent === "violet"
|
|
? vars.accent
|
|
: "violet";
|
|
var accentColors = {
|
|
green: "var(--brand, #34d399)",
|
|
blue: "var(--accent, #38bdf8)",
|
|
violet: "var(--accent-2, #a78bfa)",
|
|
};
|
|
root.style.setProperty("--sms-accent", accentColors[accent]);
|
|
|
|
var captionElements = [];
|
|
var stateElements = [];
|
|
|
|
captions.forEach(function (captionText, index) {
|
|
var caption = document.createElement("div");
|
|
caption.className = "sms-caption";
|
|
caption.textContent = captionText;
|
|
captionsHost.appendChild(caption);
|
|
captionElements.push(caption);
|
|
|
|
var state = document.createElement("div");
|
|
state.className = "sms-state sms-state--" + ((index % 3) + 1);
|
|
state.setAttribute("aria-hidden", "true");
|
|
state.innerHTML =
|
|
'<div class="sms-toolbar"><span class="sms-dots"><i></i><i></i><i></i></span><span class="sms-status"></span></div>' +
|
|
'<div class="sms-window"><aside class="sms-sidebar"><i></i><i></i><i></i><i></i></aside>' +
|
|
'<main class="sms-main"><span class="sms-title"></span><span class="sms-subtitle"></span>' +
|
|
'<div class="sms-canvas"><i class="sms-block"></i><i class="sms-block"></i><i class="sms-block"></i><i class="sms-block"></i></div></main></div>';
|
|
statesHost.appendChild(state);
|
|
stateElements.push(state);
|
|
});
|
|
|
|
var durationValue = parseFloat(root.dataset.duration || "6");
|
|
var duration = Number.isFinite(durationValue) ? Math.max(0.001, durationValue) : 6;
|
|
|
|
// Caption count owns the threshold grid. Longer durations add only
|
|
// to each phase's HOLD, never by scaling the completed timeline.
|
|
var phaseDuration = duration / captions.length;
|
|
var RISE_BASE = 0.38;
|
|
var EXIT_DELAY_BASE = 0.28;
|
|
var EXIT_BASE = 0.32;
|
|
var MOTION_BASE = RISE_BASE + EXIT_DELAY_BASE + EXIT_BASE;
|
|
var motionScale = phaseDuration < MOTION_BASE ? phaseDuration / MOTION_BASE : 1;
|
|
var RISE = RISE_BASE * motionScale;
|
|
var EXIT_DELAY = EXIT_DELAY_BASE * motionScale;
|
|
var EXIT = EXIT_BASE * motionScale;
|
|
var HOLD = Math.max(0, phaseDuration - RISE - EXIT_DELAY - EXIT);
|
|
var SWAP = Math.min(0.28 * motionScale, phaseDuration * 0.4);
|
|
|
|
captionElements.forEach(function (caption, index) {
|
|
gsap.set(caption, { opacity: 0, x: "-1.2cqw", y: "3.6cqh" });
|
|
gsap.set(stateElements[index], { opacity: index === 0 ? 1 : 0, "--sms-live": 0.64 });
|
|
});
|
|
|
|
var tl = gsap.timeline({ paused: true });
|
|
|
|
captionElements.forEach(function (caption, index) {
|
|
var phaseStart = index * phaseDuration;
|
|
var riseArc = RISE * 0.72;
|
|
var exitStart = phaseStart + RISE + HOLD + EXIT_DELAY;
|
|
var exitArc = EXIT * 0.32;
|
|
|
|
// IN: two authored segments form a shallow arrival arc.
|
|
tl.fromTo(
|
|
caption,
|
|
{ opacity: 0, x: "-1.2cqw", y: "3.6cqh" },
|
|
{
|
|
opacity: 1,
|
|
x: "0.45cqw",
|
|
y: "-0.28cqh",
|
|
duration: riseArc,
|
|
ease: "power2.out",
|
|
},
|
|
phaseStart,
|
|
);
|
|
tl.to(
|
|
caption,
|
|
{
|
|
x: "0cqw",
|
|
y: "0cqh",
|
|
duration: RISE - riseArc,
|
|
ease: "power2.out",
|
|
},
|
|
phaseStart + riseArc,
|
|
);
|
|
|
|
if (index > 0) {
|
|
tl.to(
|
|
stateElements[index - 1],
|
|
{ opacity: 0, duration: SWAP, ease: "power2.in" },
|
|
phaseStart,
|
|
);
|
|
tl.fromTo(
|
|
stateElements[index],
|
|
{ opacity: 0 },
|
|
{ opacity: 1, duration: SWAP, ease: "power2.out" },
|
|
phaseStart,
|
|
);
|
|
}
|
|
|
|
// HOLD: the mock content breathes without moving the pinned panel.
|
|
if (HOLD >= 0.4) {
|
|
tl.to(
|
|
stateElements[index],
|
|
{
|
|
"--sms-live": 0.9,
|
|
duration: HOLD / 2,
|
|
ease: "sine.inOut",
|
|
yoyo: true,
|
|
repeat: 1,
|
|
},
|
|
phaseStart + RISE,
|
|
);
|
|
}
|
|
|
|
// OUT: EXIT_DELAY is empty stillness, then two segments arc upward.
|
|
tl.to(
|
|
caption,
|
|
{
|
|
x: "0.42cqw",
|
|
y: "-0.9cqh",
|
|
duration: exitArc,
|
|
ease: "power2.in",
|
|
},
|
|
exitStart,
|
|
);
|
|
tl.to(
|
|
caption,
|
|
{
|
|
opacity: 0,
|
|
x: "-1.1cqw",
|
|
y: "-4.5cqh",
|
|
duration: EXIT - exitArc,
|
|
ease: "power2.in",
|
|
},
|
|
exitStart + exitArc,
|
|
);
|
|
});
|
|
|
|
tl.seek(0);
|
|
window.__timelines = window.__timelines || {};
|
|
window.__timelines["sticky-mock-swap"] = tl;
|
|
})();
|
|
</script>
|
|
</div>
|
|
</template>
|
|
</body>
|
|
</html>
|
|
```
|
|
|
|
</Accordion>
|
|
|
|
{/* hf:generated-footer */}
|
|
|
|
Tagged `motion-primitive` `product-demo` `sticky` `mock` `crossfade` `feature-tour`.
|
|
|
|
## Related topics
|
|
|
|
- [Browse the complete Catalog](/catalog)
|
|
- [Add assets and Catalog items in Studio](/studio/assets-and-blocks)
|
|
- [Build a richer composition](/go-further)
|