mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-09 03:16:38 +00:00
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.
123 lines
3.7 KiB
Plaintext
123 lines
3.7 KiB
Plaintext
---
|
||
title: "Grid Pixelate Wipe"
|
||
description: "Transition effect where the screen dissolves into a grid of squares that fade out with staggered timing — use between scenes"
|
||
---
|
||
|
||
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="grid-pixelate-wipe preview"
|
||
loading="lazy"
|
||
srcDoc={`<!doctype html><html><head><meta charset="utf-8"><style>html,body{margin:0;height:100%;overflow:hidden;background:transparent}hyperframes-player{display:block;width:100%;height:100%}</style><script src="https://cdn.jsdelivr.net/npm/@hyperframes/player@0.7/dist/hyperframes-player.global.js"><\/script></head><body><script>fetch("/public/catalog/components/grid-pixelate-wipe.json").then(function(r){return r.json()}).then(function(d){var p=document.createElement("hyperframes-player");p.setAttribute("srcdoc",d.html);p.setAttribute("controls","");p.setAttribute("autoplay","");p.setAttribute("loop","");p.setAttribute("muted","");p.setAttribute("poster","https://static.heygen.ai/hyperframes-oss/docs/images/catalog/components/grid-pixelate-wipe.png");document.body.appendChild(p)});<\/script></body></html>`}
|
||
/>
|
||
|
||
## Install
|
||
|
||
<InstallCommand command="npx hyperframes add grid-pixelate-wipe" />
|
||
|
||
That writes one file: `compositions/components/grid-pixelate-wipe.html`.
|
||
|
||
## Source
|
||
|
||
<Accordion title={`grid-pixelate-wipe.html`}>
|
||
|
||
```html
|
||
<!--
|
||
Grid Pixelate Wipe — transition effect.
|
||
|
||
Usage: place this overlay in your composition. To transition between
|
||
scenes, animate .grid-cell scale from 0→1 (cover) then 1→0 (reveal)
|
||
using GSAP stagger with a "from" pattern.
|
||
|
||
Customize:
|
||
- COLS / ROWS: grid density (default 16×9), edit in the script below
|
||
- --grid-color: cell fill color (default black)
|
||
- Stagger "from": "center" for radial, "edges" for inward, "random" for scatter
|
||
-->
|
||
|
||
<div
|
||
id="grid-pixelate-overlay"
|
||
style="
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
pointer-events: none;
|
||
z-index: 999;
|
||
display: grid;
|
||
"
|
||
></div>
|
||
|
||
<style>
|
||
#grid-pixelate-overlay {
|
||
--grid-color: black;
|
||
}
|
||
|
||
#grid-pixelate-overlay .grid-cell {
|
||
background: var(--grid-color);
|
||
transform: scale(0);
|
||
transform-origin: center center;
|
||
}
|
||
</style>
|
||
|
||
<script>
|
||
(function () {
|
||
const COLS = 16;
|
||
const ROWS = 9;
|
||
const overlay = document.getElementById("grid-pixelate-overlay");
|
||
if (!overlay) return;
|
||
|
||
overlay.style.gridTemplateColumns = `repeat(${COLS}, 1fr)`;
|
||
overlay.style.gridTemplateRows = `repeat(${ROWS}, 1fr)`;
|
||
|
||
for (let i = 0; i < COLS * ROWS; i++) {
|
||
const cell = document.createElement("div");
|
||
cell.className = "grid-cell";
|
||
overlay.appendChild(cell);
|
||
}
|
||
})();
|
||
</script>
|
||
|
||
<!--
|
||
Timeline integration example:
|
||
|
||
// Cover screen with grid (transition out of scene A)
|
||
tl.to("#grid-pixelate-overlay .grid-cell", {
|
||
scale: 1,
|
||
duration: 0.6,
|
||
stagger: { amount: 0.6, from: "center" },
|
||
ease: "power2.inOut",
|
||
}, 3.0);
|
||
|
||
// Swap scene content at midpoint
|
||
tl.set("#scene-a", { opacity: 0 }, 3.6);
|
||
tl.set("#scene-b", { opacity: 1 }, 3.6);
|
||
|
||
// Reveal scene B by removing grid
|
||
tl.to("#grid-pixelate-overlay .grid-cell", {
|
||
scale: 0,
|
||
duration: 0.6,
|
||
stagger: { amount: 0.6, from: "edges" },
|
||
ease: "power2.inOut",
|
||
}, 3.6);
|
||
-->
|
||
```
|
||
|
||
</Accordion>
|
||
|
||
## Usage
|
||
|
||
Open `compositions/components/grid-pixelate-wipe.html` and paste its contents into your composition. See the comment header in the file for detailed instructions.
|
||
|
||
{/* hf:generated-footer */}
|
||
|
||
Tagged `transition` `wipe` `grid` `pixelate`.
|
||
|
||
## Related topics
|
||
|
||
- [Browse the complete Catalog](/catalog)
|
||
- [Add assets and Catalog items in Studio](/studio/assets-and-blocks)
|
||
- [Build a richer composition](/go-further)
|