clean up project for use with npm install
Release / release (push) Successful in 2m6s

This commit is contained in:
2025-12-15 19:48:56 -08:00
parent b6a681338a
commit 4fe053c324
50 changed files with 391 additions and 15409 deletions
+8
View File
@@ -0,0 +1,8 @@
/**
* 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())
requestAnimationFrame(CSSRandom)
})()