From e335873403e9eb130ea3ae99acd473c73388825f Mon Sep 17 00:00:00 2001 From: Anshdeep Date: Wed, 30 Oct 2024 21:56:45 +0530 Subject: [PATCH] chaosssss --- chaosweb-v@2/index.html | 173 ++++++++++++++++++++++++++++------------ 1 file changed, 123 insertions(+), 50 deletions(-) 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); + +