diff --git a/chaosweb-v@2/index.html b/chaosweb-v@2/index.html index d040f92..a7fa78c 100644 --- a/chaosweb-v@2/index.html +++ b/chaosweb-v@2/index.html @@ -1,56 +1,129 @@ - - - - - ChaosWeb - - - - - -
- - -
-

Welcome to ChaosWeb

-
- - -
- - -
-

Scroll for the Chaos

-
-
- - - + - + element.style.transform = `rotate(${randomRotation}deg) scale(${randomScale})`; + element.style.color = randomColor; + element.style.marginLeft = `${Math.floor(Math.random() * 20) - 10}px`; + element.style.marginTop = `${Math.floor(Math.random() * 20) - 10}px`; + } + + // Apply chaotic effect every 100ms to both elements + setInterval(() => { + applyExtremeChaosEffect(chaosText); + applyExtremeChaosEffect(chaosScrollText); + }, 100); + +