mirror of
https://github.com/jaandrle/deka-dom-el
synced 2024-11-22 16:55:23 +01:00
16 lines
448 B
JavaScript
16 lines
448 B
JavaScript
import { O } from "deka-dom-el/observables";
|
|
const count= O(0);
|
|
|
|
import { el } from "deka-dom-el";
|
|
document.body.append(
|
|
el("p", O(()=> "Currently: "+count())),
|
|
el("p", { classList: { red: O(()=> 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));
|