mirror of
https://github.com/sstent/node.git
synced 2026-01-27 15:41:43 +00:00
38 lines
861 B
HTML
38 lines
861 B
HTML
<Body:>
|
|
|
|
<div>
|
|
<p>
|
|
{#if _mode}
|
|
Mode: <b>{_mode}</b> FPS: <b>{_fps}</b>
|
|
{else}
|
|
Select a mode to run:
|
|
{/}
|
|
</p>
|
|
<p>
|
|
{{#each modes}}<button x-bind="click: start">{{this}}</button>{{/}}
|
|
<button x-bind="click: stop">Stop</button>
|
|
</p>
|
|
</div>
|
|
|
|
{#if _bindProperties}
|
|
<div>
|
|
{#each _boxes}
|
|
<div class="box-view">
|
|
<div id="box-{{i}}" class="box" style="top: {.top}px; left: {.left}px; background: rgb(0, 0, {.color});">
|
|
{.content}
|
|
</div>
|
|
</div>
|
|
{/}
|
|
</div>
|
|
{else}
|
|
<div>
|
|
{#each _boxes}
|
|
<div class="box-view">
|
|
<div id="box-{{i}}" class="box" style="top: {{top}}px; left: {{left}}px; background: rgb(0, 0, {{color}});">
|
|
{{content}}
|
|
</div>
|
|
</div>
|
|
{/}
|
|
</div>
|
|
{/}
|