mirror of
https://github.com/reanimate/reanimate.git
synced 2026-09-14 09:32:22 +00:00
Deploying to gh-pages from @ 42d23833f2 🚀
This commit is contained in:
parent
2d5d49a84c
commit
871d1b4e1c
2 changed files with 30 additions and 3 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
<html>
|
<html>
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
<title>Reanimate - viewer</title>
|
<title>Reanimate - viewer</title>
|
||||||
<script src="https://unpkg.com/split-grid/dist/split-grid.js"></script>
|
<script src="https://unpkg.com/split-grid/dist/split-grid.js"></script>
|
||||||
<script type="text/javascript" src="elm.js"></script>
|
<script type="text/javascript" src="elm.js"></script>
|
||||||
|
|
@ -75,9 +76,34 @@
|
||||||
<button class="delete" aria-label="close"></button>
|
<button class="delete" aria-label="close"></button>
|
||||||
</header>
|
</header>
|
||||||
<section class="modal-card-body">
|
<section class="modal-card-body">
|
||||||
|
<div class="content">
|
||||||
|
<p>
|
||||||
|
This playground is funded by
|
||||||
|
<a href="https://github.com/sponsors/Lemmih">GitHub Sponsors ❤.</a>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Animations are rendered with the following restrictions:
|
||||||
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>List</li>
|
<li>Frame-rate is limited to 30 fps.</li>
|
||||||
|
<li>Animation are capped at 60 seconds.</li>
|
||||||
|
<li>Disk storage is capped at 5 megs per animation.</li>
|
||||||
|
<li>CPU time is capped at 30 seconds if the server is below capacity</li>
|
||||||
|
<li>CPU time is capped at 5 seconds if the server is at capacity.</li>
|
||||||
|
<li>Template Haskell is forbidden.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<p>
|
||||||
|
Animations are rendered incrementally with increasing frame-rate, starting
|
||||||
|
at 1fps and ending at 30fps. If an animation requires 10 seconds to render
|
||||||
|
but is only allocated 5, this animation will still be watchable in its entirety
|
||||||
|
but will play at 15fps rather than 30fps.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<script>
|
||||||
|
document.write('Playground version: ' + playgroundVersion);
|
||||||
|
</script>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<!-- <footer class="modal-card-foot">
|
<!-- <footer class="modal-card-foot">
|
||||||
</footer> -->
|
</footer> -->
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
const snippets = [{"title": "Composition","url": "https://reanimate.clozecards.com/ATcv1$xjG06/30.svg","code": "animation :: Animation\nanimation = docEnv $\n drawBox `parA` drawCircle\n\n"},{"title": "Color Maps","url": "https://reanimate.clozecards.com/HPNi7PpImrc/15.svg","code": "animation :: Animation\nanimation = docEnv $ staticFrame 1 $\n showColorMap parula\n"}];
|
const snippets = [{"title": "Composition","url": "https://reanimate.clozecards.com/ATcv1$xjG06/30.svg","code": "animation :: Animation\nanimation = docEnv $\n drawBox `parA` drawCircle\n\n"},{"title": "Color Maps","url": "https://reanimate.clozecards.com/HPNi7PpImrc/15.svg","code": "animation :: Animation\nanimation = docEnv $ staticFrame 1 $\n showColorMap parula\n"}];
|
||||||
|
const playgroundVersion = "2020-08-22 (42d23)";
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue