mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-04 16:42:27 +00:00
Add 15 caption overlay components to the registry, covering a wide range of animation techniques: Standalone origins (6): - caption-pill-karaoke: pill container + karaoke word highlight - caption-neon-accent: multi-color neon glow with wiggle drift - caption-weight-shift: font-weight transition between lines - caption-emoji-pop: emoji + stroked text + horizontal squeeze - caption-editorial-emphasis: dual-font (Inter + Playfair) emphasis - caption-parallax-layers: 3D text layering with vertical stretch Gallery picks (9): - caption-glitch-rgb: RGB chromatic aberration + CRT scanlines - caption-typewriter: green terminal char-by-char with cursor - caption-matrix-decode: scramble-reveal character animation - caption-particle-burst: keyword particle explosions - caption-texture-lava: flowing lava texture mask - caption-clip-wipe: clip-path left-to-right wipe reveal - caption-kinetic-slam: full-screen single-word slam - caption-gradient-fill: gradient-clipped text + elastic bounce - caption-neon-glow: cyan/magenta neon glow accents Each component includes the reusable HTML, a demo composition, and registry-item.json. All use a generic HyperFrames transcript. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
330 lines
10 KiB
HTML
Vendored
330 lines
10 KiB
HTML
Vendored
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=1920, height=1080" />
|
|
<title>Parallax Layers</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link href="https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap" rel="stylesheet" />
|
|
<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: #000;
|
|
font-family: "Instrument Serif", serif;
|
|
}
|
|
|
|
#parallax-layers {
|
|
position: relative;
|
|
width: 1920px;
|
|
height: 1080px;
|
|
overflow: hidden;
|
|
background: #000;
|
|
}
|
|
|
|
#bg-video {
|
|
position: absolute;
|
|
inset: 0;
|
|
z-index: 1;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
/* Behind captions: big red 3D text */
|
|
.behind-caption-layer {
|
|
position: absolute;
|
|
inset: 0;
|
|
z-index: 10;
|
|
pointer-events: none;
|
|
transform: translateZ(0);
|
|
}
|
|
|
|
/* Front captions */
|
|
.front-caption-layer {
|
|
position: absolute;
|
|
inset: 0;
|
|
z-index: 30;
|
|
pointer-events: none;
|
|
transform: translateZ(0);
|
|
}
|
|
|
|
.behind-safe-zone {
|
|
position: absolute;
|
|
top: 240px;
|
|
left: 0;
|
|
width: 1920px;
|
|
height: 500px;
|
|
}
|
|
|
|
.front-safe-zone {
|
|
position: absolute;
|
|
top: 700px;
|
|
left: 0;
|
|
width: 1920px;
|
|
height: 300px;
|
|
}
|
|
|
|
.caption-block {
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 0;
|
|
transform: translateX(-50%);
|
|
opacity: 0;
|
|
transform-origin: 50% 50%;
|
|
will-change: transform, opacity;
|
|
backface-visibility: hidden;
|
|
}
|
|
|
|
.caption-line {
|
|
display: flex;
|
|
align-items: baseline;
|
|
justify-content: center;
|
|
gap: 14px;
|
|
line-height: 1.1;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.caption-line--behind {
|
|
transform: scaleY(2.8);
|
|
transform-origin: 50% 100%;
|
|
}
|
|
|
|
.word {
|
|
display: inline-block;
|
|
will-change: transform, opacity;
|
|
backface-visibility: hidden;
|
|
}
|
|
|
|
.word--behind {
|
|
font-family: "Instrument Serif", serif;
|
|
font-size: 220px;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
line-height: 0.9;
|
|
color: #E50914;
|
|
-webkit-text-stroke: 5px #E50914;
|
|
text-shadow: 2px 4px 4px #A30610;
|
|
}
|
|
|
|
.word--front-normal {
|
|
font-family: "Instrument Serif", serif;
|
|
font-size: 130px;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
color: #EEEEEE;
|
|
text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 4px 24px rgba(0, 0, 0, 0.35);
|
|
}
|
|
|
|
.word--front-italic {
|
|
font-family: "Instrument Serif", serif;
|
|
font-size: 130px;
|
|
font-weight: 400;
|
|
font-style: italic;
|
|
color: #EEEEEE;
|
|
text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 4px 24px rgba(0, 0, 0, 0.35);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div
|
|
id="parallax-layers"
|
|
data-composition-id="caption-parallax-layers"
|
|
data-start="0"
|
|
data-duration="8"
|
|
data-fps="30"
|
|
data-width="1920"
|
|
data-height="1080"
|
|
>
|
|
<video
|
|
id="bg-video"
|
|
muted
|
|
playsinline
|
|
preload="auto"
|
|
data-start="0"
|
|
data-duration="8"
|
|
data-track-index="0"
|
|
data-has-audio="false"
|
|
></video>
|
|
|
|
<div class="behind-caption-layer" aria-hidden="true">
|
|
<div id="behind-stage" class="behind-safe-zone"></div>
|
|
</div>
|
|
|
|
<div class="front-caption-layer" aria-hidden="true">
|
|
<div id="front-stage" class="front-safe-zone"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
var DURATION = 8;
|
|
var BEHIND_WIDTH = 1800;
|
|
var FRONT_WIDTH = 1750;
|
|
var ENTRY_DUR = 0.1;
|
|
var SLIDE_DUR = 0.2;
|
|
|
|
var W = [
|
|
{text:"Every", start:0.0, end:0.3},
|
|
{text:"great", start:0.3, end:0.55},
|
|
{text:"video", start:0.55, end:0.85},
|
|
{text:"starts", start:0.85, end:1.1},
|
|
{text:"with", start:1.1, end:1.25},
|
|
{text:"a", start:1.25, end:1.35},
|
|
{text:"single", start:1.35, end:1.65},
|
|
{text:"frame.", start:1.65, end:2.0},
|
|
{text:"HyperFrames", start:2.1, end:2.65},
|
|
{text:"lets", start:2.65, end:2.85},
|
|
{text:"you", start:2.85, end:2.95},
|
|
{text:"write", start:2.95, end:3.15},
|
|
{text:"HTML", start:3.15, end:3.55},
|
|
{text:"and", start:3.55, end:3.65},
|
|
{text:"render", start:3.65, end:3.95},
|
|
{text:"professional",start:3.95, end:4.45},
|
|
{text:"video.", start:4.45, end:4.8},
|
|
{text:"No", start:4.9, end:5.05},
|
|
{text:"timeline.", start:5.05, end:5.45},
|
|
{text:"No", start:5.5, end:5.65},
|
|
{text:"drag", start:5.65, end:5.85},
|
|
{text:"and", start:5.85, end:5.95},
|
|
{text:"drop.", start:5.95, end:6.25},
|
|
{text:"Just", start:6.35, end:6.55},
|
|
{text:"code", start:6.55, end:6.8},
|
|
{text:"that", start:6.8, end:6.95},
|
|
{text:"becomes", start:6.95, end:7.3},
|
|
{text:"cinema.", start:7.3, end:7.7}
|
|
];
|
|
|
|
// behind=red 3D emphasis words, front=normal white words
|
|
var BLOCKS = [
|
|
{ behind: null, front: [[0],[1],[2]] },
|
|
{ behind: [[3]], front: [[4],[5]] },
|
|
{ behind: [[6]], front: [[7]] },
|
|
{ behind: [[8]], front: [[9],[10],[11]] },
|
|
{ behind: [[12]], front: [[13],[14]] },
|
|
{ behind: [[15]], front: [[16]] },
|
|
{ behind: null, front: [[17],[18]] },
|
|
{ behind: null, front: [[19],[20],[21],[22]] },
|
|
{ behind: [[24]], front: [[23],[25],[26]] },
|
|
{ behind: [[27]], front: null },
|
|
];
|
|
|
|
var behindStage = document.getElementById("behind-stage");
|
|
var frontStage = document.getElementById("front-stage");
|
|
|
|
BLOCKS.forEach(function (block, bi) {
|
|
var bEl = document.createElement("div");
|
|
bEl.className = "caption-block";
|
|
bEl.id = "bb" + bi;
|
|
if (block.behind) {
|
|
var bLine = document.createElement("div");
|
|
bLine.className = "caption-line caption-line--behind";
|
|
block.behind.forEach(function (wi_arr, wi) {
|
|
var span = document.createElement("span");
|
|
span.className = "word word--behind";
|
|
span.id = "bb" + bi + "w" + wi;
|
|
span.textContent = W[wi_arr[0]].text;
|
|
bLine.appendChild(span);
|
|
});
|
|
bEl.appendChild(bLine);
|
|
}
|
|
behindStage.appendChild(bEl);
|
|
|
|
var fEl = document.createElement("div");
|
|
fEl.className = "caption-block";
|
|
fEl.id = "fb" + bi;
|
|
if (block.front) {
|
|
var fLine = document.createElement("div");
|
|
fLine.className = "caption-line";
|
|
block.front.forEach(function (wi_arr, wi) {
|
|
var span = document.createElement("span");
|
|
var isItalic = wi_arr[0] === 7 || wi_arr[0] === 18; // frame., timeline.
|
|
span.className = "word " + (isItalic ? "word--front-italic" : "word--front-normal");
|
|
span.id = "fb" + bi + "w" + wi;
|
|
span.textContent = W[wi_arr[0]].text;
|
|
fLine.appendChild(span);
|
|
});
|
|
fEl.appendChild(fLine);
|
|
}
|
|
frontStage.appendChild(fEl);
|
|
});
|
|
|
|
var allBehind = BLOCKS.map(function (_, i) { return document.getElementById("bb" + i); });
|
|
var allFront = BLOCKS.map(function (_, i) { return document.getElementById("fb" + i); });
|
|
|
|
function applyBehindScales() {
|
|
BLOCKS.forEach(function (block, bi) {
|
|
if (block.behind) {
|
|
var line = allBehind[bi].querySelector(".caption-line");
|
|
if (line) {
|
|
var natW = line.scrollWidth;
|
|
if (natW > 0) {
|
|
var s = BEHIND_WIDTH / natW;
|
|
line.style.transform = "scaleX(" + s + ") scaleY(2.8)";
|
|
}
|
|
}
|
|
}
|
|
});
|
|
}
|
|
applyBehindScales();
|
|
|
|
window.__timelines = window.__timelines || {};
|
|
var tl = gsap.timeline({ paused: true });
|
|
|
|
function blockStart(bi) {
|
|
var b = BLOCKS[bi];
|
|
var firstIdx = b.behind ? b.behind[0][0] : b.front[0][0];
|
|
return W[firstIdx].start;
|
|
}
|
|
|
|
BLOCKS.forEach(function (block, bi) {
|
|
var start = blockStart(bi);
|
|
var nextStart = bi < BLOCKS.length - 1 ? blockStart(bi + 1) : DURATION;
|
|
var bEl = allBehind[bi];
|
|
var fEl = allFront[bi];
|
|
|
|
allBehind.forEach(function (other, oi) { if (oi !== bi) tl.set(other, { opacity: 0 }, start); });
|
|
allFront.forEach(function (other, oi) { if (oi !== bi) tl.set(other, { opacity: 0 }, start); });
|
|
|
|
if (block.behind) {
|
|
tl.set(bEl, { opacity: 1 }, start);
|
|
block.behind.forEach(function (wi_arr, wi) {
|
|
var wordEl = document.getElementById("bb" + bi + "w" + wi);
|
|
var wordStart = W[wi_arr[0]].start;
|
|
tl.set(wordEl, { opacity: 0 }, start);
|
|
tl.to(wordEl, { opacity: 1, duration: ENTRY_DUR, ease: "power2.out" }, wordStart);
|
|
});
|
|
}
|
|
|
|
if (block.front) {
|
|
tl.set(fEl, { opacity: 1 }, start);
|
|
block.front.forEach(function (wi_arr, wi) {
|
|
var wordEl = document.getElementById("fb" + bi + "w" + wi);
|
|
var wordStart = W[wi_arr[0]].start;
|
|
tl.set(wordEl, { opacity: 0 }, start);
|
|
tl.set(wordEl, { opacity: 1 }, wordStart);
|
|
});
|
|
}
|
|
|
|
tl.set(bEl, { opacity: 0 }, nextStart);
|
|
tl.set(fEl, { opacity: 0 }, nextStart);
|
|
});
|
|
|
|
tl.to({}, { duration: DURATION }, 0);
|
|
window.__timelines["parallax-layers"] = tl;
|
|
|
|
document.fonts.ready.then(function () { applyBehindScales(); });
|
|
</script>
|
|
</body>
|
|
</html>
|