mirror of
https://github.com/jaandrle/deka-dom-el
synced 2025-12-13 04:56:27 +01:00
⚡ Docs
This commit is contained in:
15
docs/components/examples/signals/dom-attrs.js
Normal file
15
docs/components/examples/signals/dom-attrs.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import { S } from "deka-dom-el/signals";
|
||||
const count= S(0);
|
||||
|
||||
import { el } from "deka-dom-el";
|
||||
document.body.append(
|
||||
el("p", S(()=> "Currently: "+count())),
|
||||
el("p", { classList: { red: S(()=> count()%2) }, dataset: { count }, textContent: "Attributes example" })
|
||||
);
|
||||
document.head.append(
|
||||
el("style", ".red { color: red; }")
|
||||
);
|
||||
|
||||
const interval= 5 * 1000;
|
||||
setTimeout(clearInterval, 10*interval,
|
||||
setInterval(()=> count(count()+1), interval));
|
||||
Reference in New Issue
Block a user