mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-11 14:50:02 +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:
@@ -3,6 +3,8 @@ title: "Mechanical Transitions"
|
||||
description: "Showcase of mechanical shutter and iris transitions"
|
||||
---
|
||||
|
||||
import { InstallCommand } from "/snippets/install-command.jsx";
|
||||
|
||||
<iframe
|
||||
className="w-full aspect-video rounded-xl border-0 bg-zinc-100 dark:bg-zinc-800"
|
||||
title="transitions-mechanical preview"
|
||||
@@ -12,30 +14,449 @@ description: "Showcase of mechanical shutter and iris transitions"
|
||||
|
||||
## Install
|
||||
|
||||
```bash Terminal
|
||||
npx hyperframes add transitions-mechanical
|
||||
```
|
||||
<InstallCommand command="npx hyperframes add transitions-mechanical" />
|
||||
|
||||
That writes one file: `compositions/transitions-mechanical.html`.
|
||||
|
||||
## Add it to your video
|
||||
## Source
|
||||
|
||||
It runs for 15 seconds at 1920×1080. Paste this into your composition:
|
||||
<Accordion title={`transitions-mechanical.html`}>
|
||||
|
||||
```html index.html
|
||||
<div
|
||||
data-composition-id="transitions-mechanical"
|
||||
data-composition-src="compositions/transitions-mechanical.html"
|
||||
data-start="0"
|
||||
data-duration="15"
|
||||
data-track-index="1"
|
||||
data-width="1920"
|
||||
data-height="1080"
|
||||
></div>
|
||||
```html
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=1920" />
|
||||
<script src="https://cdn.jsdelivr.net/npm/gsap@3.14.2/dist/gsap.min.js"></script>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
body {
|
||||
width: 1920px;
|
||||
height: 1080px;
|
||||
overflow: hidden;
|
||||
background: #000;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
|
||||
}
|
||||
.scene {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 1920px;
|
||||
height: 1080px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.scene-inner {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
.info-bar {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 100;
|
||||
background: rgba(0, 0, 0, 0.88);
|
||||
padding: 24px 60px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 40px;
|
||||
opacity: 0;
|
||||
}
|
||||
.info-num {
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
color: #e07a5f;
|
||||
letter-spacing: 0.1em;
|
||||
}
|
||||
.info-name {
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
color: #fff;
|
||||
}
|
||||
.info-desc {
|
||||
font-size: 14px;
|
||||
color: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
#title-card {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 1920px;
|
||||
height: 1080px;
|
||||
background: #0d1b2a;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
z-index: 50;
|
||||
}
|
||||
#outro-card {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 1920px;
|
||||
height: 1080px;
|
||||
background: #0d1b2a;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
z-index: 50;
|
||||
opacity: 0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div
|
||||
data-composition-id="main"
|
||||
data-start="0"
|
||||
data-duration="15"
|
||||
data-width="1920"
|
||||
data-height="1080"
|
||||
>
|
||||
<!-- Title Card -->
|
||||
<div id="title-card">
|
||||
<div
|
||||
id="title-label"
|
||||
style="
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
color: #e07a5f;
|
||||
letter-spacing: 0.2em;
|
||||
text-transform: uppercase;
|
||||
opacity: 0;
|
||||
"
|
||||
>
|
||||
TRANSITION CATALOG
|
||||
</div>
|
||||
<div
|
||||
id="title-main"
|
||||
style="font-size: 72px; font-weight: 900; color: #fff; margin-top: 16px; opacity: 0"
|
||||
>
|
||||
Mechanical Transitions
|
||||
</div>
|
||||
<div
|
||||
id="title-count"
|
||||
style="
|
||||
font-size: 24px;
|
||||
font-weight: 400;
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
margin-top: 12px;
|
||||
opacity: 0;
|
||||
"
|
||||
>
|
||||
2 transitions
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Scene A -->
|
||||
<div id="scene1" class="scene" style="z-index: 1">
|
||||
<div class="scene-inner" id="s1" style="background: #1b263b">
|
||||
<div style="font-size: 200px; font-weight: 900; color: rgba(255, 255, 255, 0.08)">
|
||||
ONE
|
||||
</div>
|
||||
<div
|
||||
style="
|
||||
font-size: 32px;
|
||||
font-weight: 700;
|
||||
color: #778da9;
|
||||
letter-spacing: 0.15em;
|
||||
margin-top: -20px;
|
||||
"
|
||||
>
|
||||
SCENE A
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Scene B -->
|
||||
<div id="scene2" class="scene" style="z-index: 2; opacity: 0">
|
||||
<div class="scene-inner" id="s2" style="background: #e07a5f">
|
||||
<div style="font-size: 200px; font-weight: 900; color: rgba(255, 255, 255, 0.15)">
|
||||
TWO
|
||||
</div>
|
||||
<div
|
||||
style="
|
||||
font-size: 32px;
|
||||
font-weight: 700;
|
||||
color: #fff;
|
||||
letter-spacing: 0.15em;
|
||||
margin-top: -20px;
|
||||
"
|
||||
>
|
||||
SCENE B
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Shutter Halves -->
|
||||
<div
|
||||
id="shutter-top"
|
||||
style="
|
||||
position: absolute;
|
||||
top: -540px;
|
||||
left: 0;
|
||||
width: 1920px;
|
||||
height: 540px;
|
||||
background: #111;
|
||||
z-index: 50;
|
||||
"
|
||||
></div>
|
||||
<div
|
||||
id="shutter-bot"
|
||||
style="
|
||||
position: absolute;
|
||||
bottom: -540px;
|
||||
left: 0;
|
||||
width: 1920px;
|
||||
height: 540px;
|
||||
background: #111;
|
||||
z-index: 50;
|
||||
"
|
||||
></div>
|
||||
|
||||
<!-- Info Bars -->
|
||||
<div id="info-1" class="info-bar">
|
||||
<div class="info-num">01</div>
|
||||
<div class="info-name">Shutter</div>
|
||||
<div class="info-desc">Use a shutter close/open transition</div>
|
||||
</div>
|
||||
<div id="info-2" class="info-bar">
|
||||
<div class="info-num">02</div>
|
||||
<div class="info-name">Clock Wipe</div>
|
||||
<div class="info-desc">Use a clock wipe transition</div>
|
||||
</div>
|
||||
|
||||
<!-- Outro Card -->
|
||||
<div id="outro-card">
|
||||
<div
|
||||
id="outro-label"
|
||||
style="
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
color: #e07a5f;
|
||||
letter-spacing: 0.2em;
|
||||
text-transform: uppercase;
|
||||
opacity: 0;
|
||||
"
|
||||
>
|
||||
MECHANICAL TRANSITIONS
|
||||
</div>
|
||||
<div
|
||||
id="outro-main"
|
||||
style="font-size: 56px; font-weight: 900; color: #fff; margin-top: 16px; opacity: 0"
|
||||
>
|
||||
2 Transitions
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
(function () {
|
||||
var tl = gsap.timeline({ paused: true });
|
||||
var t = 0;
|
||||
|
||||
// === TITLE CARD (3s) ===
|
||||
tl.to("#title-label", { opacity: 1, y: 0, duration: 0.4, ease: "power2.out" }, t + 0.3);
|
||||
tl.fromTo(
|
||||
"#title-main",
|
||||
{ opacity: 0, y: 20 },
|
||||
{ opacity: 1, y: 0, duration: 0.5, ease: "power2.out" },
|
||||
t + 0.6,
|
||||
);
|
||||
tl.fromTo(
|
||||
"#title-count",
|
||||
{ opacity: 0 },
|
||||
{ opacity: 1, duration: 0.4, ease: "power2.out" },
|
||||
t + 1.0,
|
||||
);
|
||||
tl.to("#title-card", { opacity: 0, duration: 0.4, ease: "power2.inOut" }, t + 2.4);
|
||||
t += 3;
|
||||
|
||||
function resetScenes() {
|
||||
tl.set(
|
||||
"#scene1",
|
||||
{
|
||||
opacity: 1,
|
||||
x: 0,
|
||||
y: 0,
|
||||
scale: 1,
|
||||
scaleX: 1,
|
||||
rotation: 0,
|
||||
filter: "none",
|
||||
clipPath: "none",
|
||||
zIndex: 1,
|
||||
skewX: 0,
|
||||
},
|
||||
t,
|
||||
);
|
||||
tl.set(
|
||||
"#scene2",
|
||||
{
|
||||
opacity: 0,
|
||||
x: 0,
|
||||
y: 0,
|
||||
scale: 1,
|
||||
scaleX: 1,
|
||||
rotation: 0,
|
||||
filter: "none",
|
||||
clipPath: "none",
|
||||
zIndex: 2,
|
||||
skewX: 0,
|
||||
},
|
||||
t,
|
||||
);
|
||||
tl.set(
|
||||
"#s1",
|
||||
{
|
||||
opacity: 1,
|
||||
x: 0,
|
||||
y: 0,
|
||||
scale: 1,
|
||||
rotation: 0,
|
||||
filter: "none",
|
||||
skewX: 0,
|
||||
scaleX: 1,
|
||||
transformOrigin: "50% 50%",
|
||||
},
|
||||
t,
|
||||
);
|
||||
tl.set(
|
||||
"#s2",
|
||||
{
|
||||
opacity: 1,
|
||||
x: 0,
|
||||
y: 0,
|
||||
scale: 1,
|
||||
rotation: 0,
|
||||
filter: "none",
|
||||
skewX: 0,
|
||||
scaleX: 1,
|
||||
transformOrigin: "50% 50%",
|
||||
},
|
||||
t,
|
||||
);
|
||||
tl.set("#shutter-top", { y: 0 }, t);
|
||||
tl.set("#shutter-bot", { y: 0 }, t);
|
||||
}
|
||||
|
||||
// === TRANSITION 1: Shutter ===
|
||||
resetScenes();
|
||||
tl.to("#info-1", { opacity: 1, duration: 0.3 }, t + 0.2);
|
||||
var T = t + 1.5;
|
||||
tl.to("#shutter-top", { y: 540, duration: 0.25, ease: "power3.in" }, T);
|
||||
tl.to("#shutter-bot", { y: -540, duration: 0.25, ease: "power3.in" }, T);
|
||||
tl.set("#scene1", { opacity: 0 }, T + 0.25);
|
||||
tl.set("#scene2", { opacity: 1 }, T + 0.25);
|
||||
tl.to("#shutter-top", { y: 0, duration: 0.25, ease: "power3.out" }, T + 0.3);
|
||||
tl.to("#shutter-bot", { y: 0, duration: 0.25, ease: "power3.out" }, T + 0.3);
|
||||
t = T + 1.5 + 1.0;
|
||||
tl.to("#info-1", { opacity: 0, duration: 0.2 }, t);
|
||||
// Reset shutters after demo
|
||||
tl.set("#shutter-top", { y: 0 }, t + 0.2);
|
||||
tl.set("#shutter-bot", { y: 0 }, t + 0.2);
|
||||
t += 0.5;
|
||||
|
||||
// === TRANSITION 2: Clock Wipe ===
|
||||
resetScenes();
|
||||
tl.to("#info-2", { opacity: 1, duration: 0.3 }, t + 0.2);
|
||||
T = t + 1.5;
|
||||
var d = 0.1;
|
||||
tl.set(
|
||||
"#scene2",
|
||||
{
|
||||
opacity: 1,
|
||||
zIndex: 10,
|
||||
clipPath:
|
||||
"polygon(50% 50%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%)",
|
||||
},
|
||||
T,
|
||||
);
|
||||
tl.to(
|
||||
"#scene2",
|
||||
{
|
||||
clipPath:
|
||||
"polygon(50% 50%, 50% 0%, 100% 0%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%)",
|
||||
duration: d,
|
||||
ease: "none",
|
||||
},
|
||||
T,
|
||||
);
|
||||
tl.to(
|
||||
"#scene2",
|
||||
{
|
||||
clipPath:
|
||||
"polygon(50% 50%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%)",
|
||||
duration: d,
|
||||
ease: "none",
|
||||
},
|
||||
T + d,
|
||||
);
|
||||
tl.to(
|
||||
"#scene2",
|
||||
{
|
||||
clipPath:
|
||||
"polygon(50% 50%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 50%, 0% 50%)",
|
||||
duration: d,
|
||||
ease: "none",
|
||||
},
|
||||
T + d * 2,
|
||||
);
|
||||
tl.to(
|
||||
"#scene2",
|
||||
{
|
||||
clipPath:
|
||||
"polygon(50% 50%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 50%, 0% 0%)",
|
||||
duration: d,
|
||||
ease: "none",
|
||||
},
|
||||
T + d * 3,
|
||||
);
|
||||
tl.set("#scene2", { clipPath: "none", zIndex: 2 }, T + d * 4 + 0.02);
|
||||
tl.set("#scene1", { opacity: 0 }, T + d * 4 + 0.02);
|
||||
t = T + 1.5 + 1.0;
|
||||
tl.to("#info-2", { opacity: 0, duration: 0.2 }, t);
|
||||
t += 0.5;
|
||||
|
||||
// === OUTRO (3s) ===
|
||||
tl.set("#scene1", { opacity: 0 }, t);
|
||||
tl.set("#scene2", { opacity: 0 }, t);
|
||||
tl.to("#outro-card", { opacity: 1, duration: 0.4, ease: "power2.inOut" }, t);
|
||||
tl.to("#outro-label", { opacity: 1, duration: 0.4, ease: "power2.out" }, t + 0.3);
|
||||
tl.fromTo(
|
||||
"#outro-main",
|
||||
{ opacity: 0, y: 20 },
|
||||
{ opacity: 1, y: 0, duration: 0.5, ease: "power2.out" },
|
||||
t + 0.6,
|
||||
);
|
||||
tl.to("#outro-card", { opacity: 0, duration: 0.4, ease: "power2.inOut" }, t + 2.4);
|
||||
|
||||
window.__timelines = window.__timelines || {};
|
||||
window.__timelines["main"] = tl;
|
||||
})();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
```
|
||||
|
||||
Move it in time with `data-start`. Put it on a different timeline row with
|
||||
`data-track-index`. See [data attributes](/concepts/data-attributes) for the rest.
|
||||
</Accordion>
|
||||
|
||||
## Usage
|
||||
|
||||
After installing, add the block to your host composition:
|
||||
|
||||
```html
|
||||
<div data-composition-id="transitions-mechanical" data-composition-src="compositions/transitions-mechanical.html" data-start="0" data-duration="15" data-track-index="1" data-width="1920" data-height="1080"></div>
|
||||
```
|
||||
|
||||
{/* hf:generated-footer */}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user