This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HAFTUNGSAUSSCHLUSS: Dies ist nur ein Beispiel zu Unterhaltungs-Zwecken. Keine Haftung, keine Gewähr, weder ausdrücklich noch implizit. Benutzung auf eigenes Risiko. | |
DISCLAIMER: This is an example only, for your own entertainment. No warranty, no liability, neither explicit nor implied. Use at your own risk. | |
Englische Fassung unten. Ersetze Deine eigenen Namen, technische Daten, etc. basierend auf Deiner eigenen Ausrüstung. Ändere, adaptiere oder kopiere Teile hiervon nach Bedarf. | |
English translation below. Substitute your own names, technical data, etc. based on your own equipment. Feel free to change, adapt or borrow from, based on your needs. | |
Context: https://constantin.glez.de/posts/2025-10-08-power-to-the-people-what-45-days-of-balcony-solar-taught-me-about-climate-action/ | |
--- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Autumn seasonal animation. | |
* Create a number of fall leaves that flow across the banner, simulating wind. | |
*/ | |
// Leaf parameters | |
const DEG_TO_RAD = Math.PI / 180; | |
const maxLeaves = 50; | |
const leafSpawnX = 1.1; // * banner width | |
const leafSpawnXVariation = 0.1; |