mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-04 07:19:52 +00:00
* fix(studio): preserve composition playback continuity * feat(studio): drag compositions into the timeline * fix(studio): collapse expanded composition move aliases * fix(studio): make timeline cuts atomic * fix(studio): group inspector gesture history * test(studio): cover masked text selection * fix(studio): harden composition timeline reliability * fix(studio): satisfy CI source gates * fix(studio): harden composition mutation requests
42 lines
954 B
HTML
42 lines
954 B
HTML
<template id="title-card-template">
|
|
<section
|
|
id="title-card-root"
|
|
data-composition-id="title-card"
|
|
data-width="480"
|
|
data-height="220"
|
|
data-start="0"
|
|
data-duration="4"
|
|
data-no-timeline
|
|
>
|
|
<style>
|
|
#title-card-root {
|
|
box-sizing: border-box;
|
|
width: 480px;
|
|
height: 220px;
|
|
padding: 32px;
|
|
overflow: hidden;
|
|
background: #202736;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
.hl-block {
|
|
width: 100%;
|
|
}
|
|
.hl-mask {
|
|
overflow: hidden;
|
|
background: transparent;
|
|
}
|
|
.hl-text {
|
|
margin: 0;
|
|
color: #f4f7ff;
|
|
font-size: 52px;
|
|
line-height: 1.05;
|
|
}
|
|
</style>
|
|
<div class="hl-block" data-hf-id="title-block">
|
|
<div class="hl-mask" data-hf-id="title-mask">
|
|
<h1 class="hl-text" data-hf-id="title-text">Reliable compositions</h1>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|