mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-13 07:40:06 +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.
106 lines
3.8 KiB
Plaintext
106 lines
3.8 KiB
Plaintext
---
|
|
title: "Camera Rig Depth Stack"
|
|
description: "A 3D camera-rig-style card stack with depth, parallax, and focus shift."
|
|
---
|
|
|
|
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="camera-rig-depth-stack 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/camera-rig-depth-stack.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/camera-rig-depth-stack.png");document.body.appendChild(p)});<\/script></body></html>`}
|
|
/>
|
|
|
|
## Install
|
|
|
|
<InstallCommand command="npx hyperframes add camera-rig-depth-stack" />
|
|
|
|
That writes one file: `compositions/components/camera-rig-depth-stack.html`.
|
|
|
|
## Source
|
|
|
|
<Accordion title={`camera-rig-depth-stack.html`}>
|
|
|
|
```html
|
|
<!--
|
|
Camera Rig Depth Stack - advanced HyperFrames primitive.
|
|
|
|
This is intentionally seekable: drive it from a paused GSAP timeline.
|
|
MotionPath examples require GSAP MotionPathPlugin. Three.js examples expose
|
|
a render(progress) adapter instead of a free-running requestAnimationFrame loop.
|
|
-->
|
|
|
|
<div class="hf-advanced-camera-rig-depth-stack">
|
|
<div class="panel">
|
|
<div>
|
|
<h3>Camera Rig Depth Stack</h3>
|
|
<p>A 3D camera-rig-style card stack with depth, parallax, and focus shift.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.hf-advanced-camera-rig-depth-stack {
|
|
color: #111827;
|
|
font-family: Inter, system-ui, sans-serif;
|
|
}
|
|
.hf-advanced-camera-rig-depth-stack {
|
|
position: relative;
|
|
width: 760px;
|
|
height: 430px;
|
|
perspective: 900px;
|
|
border-radius: 30px;
|
|
overflow: hidden;
|
|
background: linear-gradient(135deg, #0f172a, #312e81);
|
|
box-shadow: 0 28px 80px rgba(15, 23, 42, 0.2);
|
|
}
|
|
.hf-advanced-camera-rig-depth-stack .panel {
|
|
position: absolute;
|
|
inset: 56px 90px;
|
|
border-radius: 30px;
|
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.52));
|
|
border: 1px solid rgba(255, 255, 255, 0.45);
|
|
backdrop-filter: blur(18px);
|
|
transform: rotateY(var(--hf-rotate-y, -16deg)) rotateX(var(--hf-rotate-x, 9deg))
|
|
translateZ(var(--hf-z, 0px));
|
|
box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
|
|
display: grid;
|
|
place-items: center;
|
|
text-align: center;
|
|
}
|
|
.hf-advanced-camera-rig-depth-stack h3 {
|
|
margin: 0;
|
|
color: #111827;
|
|
font-size: 42px;
|
|
letter-spacing: -0.05em;
|
|
}
|
|
.hf-advanced-camera-rig-depth-stack p {
|
|
margin: 8px 0 0;
|
|
color: #475569;
|
|
}
|
|
</style>
|
|
|
|
<!--
|
|
Timeline integration:
|
|
const startTime = 0;
|
|
tl.fromTo('.hf-advanced-camera-rig-depth-stack .panel', { '--hf-rotate-y': '-20deg', '--hf-rotate-x': '12deg', '--hf-z': '-80px', opacity: 0 }, { '--hf-rotate-y': '10deg', '--hf-rotate-x': '-4deg', '--hf-z': '80px', opacity: 1, duration: 1.2, ease: 'power3.out' }, startTime);
|
|
-->
|
|
```
|
|
|
|
</Accordion>
|
|
|
|
## Usage
|
|
|
|
Open `compositions/components/camera-rig-depth-stack.html` and paste its contents into your composition. The comment header describes the timeline integration and any optional dependency setup.
|
|
|
|
{/* hf:generated-footer */}
|
|
|
|
Tagged `advanced-motion` `hyperframes-native`.
|
|
|
|
## Related topics
|
|
|
|
- [Browse the complete Catalog](/catalog)
|
|
- [Add assets and Catalog items in Studio](/studio/assets-and-blocks)
|
|
- [Build a richer composition](/go-further)
|