Files
P42_UI/app/views/editors/KeyframeView.html
T
2025-10-17 22:32:59 +00:00

43 lines
1.2 KiB
HTML

<style>
.kf-editor{
grid-template-columns: 15% auto 20%;
grid-gap:0;
height: 100%;
}
.kf-editor > article{
height: 100%;
margin: 0;
}
.kf-editor > article, .kf-editor > article header{ border-color: #473; }
.kf-editor article.agent-preview header { padding:0; }
.kf-editor article.agent-preview canvas{ width:100%; aspect-ratio: 1 / 1;}
</style>
<div class="kf-editor cols-3">
<article eiccard class="agent-preview">
<header><canvas data-output="agentSampleCanvas"></canvas></header>
<section>
agents selector
<bz-select data-output="agentsSelector">
<option value="val1">First value</option>
<option value="val2">Second value</option>
<option value="val3">Third value</option>
<option value="val4">Fourth value</option>
<option value="val5">Fifth value</option>
</bz-select>
</section>
</article>
<article eiccard>
<section>
Arena
</section>
</article>
<article eiccard="">
<header>Properties</header>
<section>Props form</section>
</article>
</div>