Files
js-util/src/CSSRandom.ts
T
2025-12-28 18:08:57 -08:00

10 lines
280 B
TypeScript

/**
* On import, sets the global css variable `--random` to `Math.random()` before each draw
* @module CSSRandom
*/
(function CSSRandom() {
document.documentElement.style.setProperty('--random', Math.random().toString())
requestAnimationFrame(CSSRandom)
})()
export {}