mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-02 12:08:50 +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: "Organic Light Leak Overlay"
|
||||
description: "Finite CSS light-leak overlay for memory beats and motivated 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="organic-light-leak-overlay preview"
|
||||
@@ -12,9 +14,7 @@ description: "Finite CSS light-leak overlay for memory beats and motivated trans
|
||||
|
||||
## Install
|
||||
|
||||
```bash Terminal
|
||||
npx hyperframes add organic-light-leak-overlay
|
||||
```
|
||||
<InstallCommand command="npx hyperframes add organic-light-leak-overlay" />
|
||||
|
||||
That writes one file: `compositions/organic-light-leak-overlay.html`.
|
||||
|
||||
@@ -37,6 +37,140 @@ It runs for 4 seconds at 1920×1080. Paste this into your composition:
|
||||
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.
|
||||
|
||||
## Source
|
||||
|
||||
<Accordion title={`organic-light-leak-overlay.html`}>
|
||||
|
||||
```html
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<script src="https://cdn.jsdelivr.net/npm/gsap@3.14.2/dist/gsap.min.js"></script>
|
||||
<style>
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
width: 1920px;
|
||||
height: 1080px;
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
#hf-light-leak {
|
||||
position: absolute;
|
||||
inset: -16%;
|
||||
opacity: 0;
|
||||
overflow: hidden;
|
||||
pointer-events: none;
|
||||
mix-blend-mode: screen;
|
||||
}
|
||||
|
||||
#hf-light-leak .hf-leak-layer {
|
||||
position: absolute;
|
||||
inset: -20%;
|
||||
will-change: opacity, transform;
|
||||
}
|
||||
|
||||
#hf-light-leak .hf-leak-amber {
|
||||
background:
|
||||
radial-gradient(ellipse 52% 110% at 10% 58%, rgb(255 241 197 / 92%), transparent 45%),
|
||||
radial-gradient(ellipse 72% 120% at 24% 54%, rgb(255 126 57 / 78%), transparent 66%);
|
||||
filter: blur(2.8vmin);
|
||||
}
|
||||
|
||||
#hf-light-leak .hf-leak-red {
|
||||
background: radial-gradient(
|
||||
ellipse 58% 105% at 78% 34%,
|
||||
rgb(255 79 61 / 72%),
|
||||
rgb(255 44 92 / 28%) 48%,
|
||||
transparent 76%
|
||||
);
|
||||
filter: blur(4vmin);
|
||||
}
|
||||
|
||||
#hf-light-leak .hf-leak-gold {
|
||||
background: linear-gradient(
|
||||
104deg,
|
||||
transparent 24%,
|
||||
rgb(255 144 62 / 30%) 40%,
|
||||
rgb(255 247 205 / 72%) 51%,
|
||||
rgb(255 124 48 / 22%) 62%,
|
||||
transparent 78%
|
||||
);
|
||||
filter: blur(2vmin);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div
|
||||
id="organic-light-leak-overlay"
|
||||
data-composition-id="organic-light-leak-overlay"
|
||||
data-start="0"
|
||||
data-duration="4"
|
||||
data-width="1920"
|
||||
data-height="1080"
|
||||
>
|
||||
<div id="hf-light-leak" aria-hidden="true">
|
||||
<div class="hf-leak-layer hf-leak-amber"></div>
|
||||
<div class="hf-leak-layer hf-leak-red"></div>
|
||||
<div class="hf-leak-layer hf-leak-gold"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
window.__timelines = window.__timelines || {};
|
||||
|
||||
var leak = document.getElementById("hf-light-leak");
|
||||
var host = leak && leak.closest("[data-composition-id]");
|
||||
if (!host) throw new Error("Organic Light Leak could not find its composition host");
|
||||
|
||||
var compositionId = host.getAttribute("data-composition-id");
|
||||
var duration = Number(host.getAttribute("data-duration")) || 4;
|
||||
var tl = gsap.timeline({ paused: true });
|
||||
|
||||
tl.to({}, { duration: duration, ease: "none" }, 0);
|
||||
tl.fromTo(
|
||||
leak,
|
||||
{ opacity: 0 },
|
||||
{ opacity: 0.9, duration: duration * 0.24, ease: "sine.out" },
|
||||
duration * 0.08,
|
||||
);
|
||||
tl.to(leak, { opacity: 0.46, duration: duration * 0.2, ease: "sine.inOut" }, duration * 0.42);
|
||||
tl.to(leak, { opacity: 0, duration: duration * 0.26, ease: "sine.in" }, duration * 0.68);
|
||||
tl.fromTo(
|
||||
".hf-leak-amber",
|
||||
{ xPercent: -20, scale: 0.92, rotation: -4 },
|
||||
{ xPercent: 18, scale: 1.1, rotation: 2, duration: duration, ease: "sine.inOut" },
|
||||
0,
|
||||
);
|
||||
tl.fromTo(
|
||||
".hf-leak-red",
|
||||
{ xPercent: 20, yPercent: -8, scale: 1.08 },
|
||||
{ xPercent: -16, yPercent: 8, scale: 0.94, duration: duration, ease: "sine.inOut" },
|
||||
0,
|
||||
);
|
||||
tl.fromTo(
|
||||
".hf-leak-gold",
|
||||
{ xPercent: -28, rotation: -6 },
|
||||
{ xPercent: 24, rotation: 4, duration: duration, ease: "sine.inOut" },
|
||||
0,
|
||||
);
|
||||
|
||||
window.__timelines[compositionId] = tl;
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
```
|
||||
|
||||
</Accordion>
|
||||
|
||||
{/* hf:generated-footer */}
|
||||
|
||||
Tagged `light-leak` `film` `memory` `transition` `overlay` `media-treatment-overlay`.
|
||||
|
||||
Reference in New Issue
Block a user