mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-01 19:42:03 +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.
110 lines
3.2 KiB
HTML
Vendored
110 lines
3.2 KiB
HTML
Vendored
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=1920, height=1080" />
|
|
<title>Camera Rig Depth Stack - Demo</title>
|
|
<script src="https://cdn.jsdelivr.net/npm/gsap@3.15.0/dist/gsap.min.js"></script>
|
|
<style>
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
width: 1920px;
|
|
height: 1080px;
|
|
overflow: hidden;
|
|
}
|
|
#demo {
|
|
width: 1920px;
|
|
height: 1080px;
|
|
display: grid;
|
|
place-items: center;
|
|
background: #f7f7f8;
|
|
font-family: Inter, system-ui, sans-serif;
|
|
}
|
|
.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);
|
|
/* ponytail: scale root (not a GSAP target) to fill ~65% of 1080px height */
|
|
transform: scale(1.65);
|
|
}
|
|
.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;
|
|
font-size: 18px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div
|
|
id="demo"
|
|
data-composition-id="camera-rig-depth-stack-demo"
|
|
data-start="0"
|
|
data-width="1920"
|
|
data-height="1080"
|
|
data-duration="5"
|
|
>
|
|
<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>
|
|
</div>
|
|
<script>
|
|
const tl = gsap.timeline({ paused: true });
|
|
const startTime = 0.5;
|
|
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,
|
|
);
|
|
tl.set({}, {}, 5);
|
|
window.__timelines = window.__timelines || {};
|
|
window.__timelines["camera-rig-depth-stack-demo"] = tl;
|
|
</script>
|
|
</body>
|
|
</html>
|