js/index.html

50 lines
1.1 KiB
HTML
Raw Normal View History

2022-01-01 12:05:43 +00:00
<link rel="stylesheet" href="page/style.css">
<script type="module" src="page/codeblock.js"></script>
2022-01-01 12:05:43 +00:00
<h1>DarkWiiPlayer/JS</h1>
<p>A JavaScript <em>micro-framework</em> to make front-end <em>easier</em></p>
<p>Note: <b>This website is still work in progress!</b></p>
<section>
<h2>Skooma.js</h2>
<p>
Skooma lets you <strong>generate DOM nodes in JavaScript</strong>.
</p>
<p>
<h3 class="all-unset"><b>Code Sample</b>:</h3>
<code-block>
import {html} from 'skooma.js'
let div = html.div([
html.h1('Hello, World!'),
html.p('Here is some text', {class: ["class_a", "class_b"]})
html.button("Click Me!", { click: event => console.log(event) })
])
</code-block>
2022-01-01 12:05:43 +00:00
</p>
<a class="button" href="page/skooma.html">Read more</a>
</section>
<section>
2022-02-08 13:50:32 +00:00
<h2>Debounce</h2>
<p>
Debounces data like user input or events that can occur in a burst.
</p>
<p>
<h3 class="all-unset"><b>Code Sample</b>:</h3>
<code-block>
import debounce from 'debounce.js'
input.addEventListener("change", debounce(event =&gt; update(input.value)))
</code-block>
</p>
<a class="button" href="page/debounce.html">Read More</a>
2022-01-01 12:05:43 +00:00
</section>