Testing347 commited on
Commit
fd9c86f
·
verified ·
1 Parent(s): cdb978c

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +20 -20
index.html CHANGED
@@ -27,26 +27,26 @@
27
  -------------------------------------------------------------
28
  */
29
 
30
- /* Pulse animation: fade in/out repeatedly */
31
- @keyframes pulse {
32
- 0% { opacity: 0.8; }
33
- 50% { opacity: 1; }
34
- 100% { opacity: 0.8; }
35
- }
36
-
37
- /* Float animation: move element up and down */
38
- @keyframes float {
39
- 0% { transform: translateY(0px); }
40
- 50% { transform: translateY(-10px); }
41
- 100% { transform: translateY(0px); }
42
- }
43
-
44
- /* Glow animation: change box-shadow intensity */
45
- @keyframes glow {
46
- 0% { box-shadow: 0 0 10px rgba(99, 102, 241, 0.5); }
47
- 50% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.8); }
48
- 100% { box-shadow: 0 0 10px rgba(99, 102, 241, 0.5); }
49
- }
50
 
51
  /* Apply float and glow to the “conscious orb” icon */
52
  .conscious-orb {
 
27
  -------------------------------------------------------------
28
  */
29
 
30
+ /* Pulse animation: fade in/out more noticeably */
31
+ @keyframes pulse {
32
+ 0% { opacity: 0.6; } /* start a bit more transparent */
33
+ 50% { opacity: 1; } /* full opacity at midpoint */
34
+ 100% { opacity: 0.6; } /* fade back to more transparent */
35
+ }
36
+
37
+ /* Float animation: move element up and down by 20px instead of 10px */
38
+ @keyframes float {
39
+ 0% { transform: translateY(0px); }
40
+ 50% { transform: translateY(-20px); } /* twice the original vertical travel */
41
+ 100% { transform: translateY(0px); }
42
+ }
43
+
44
+ /* Glow animation: increase box-shadow spread to 20px ⇄ 40px */
45
+ @keyframes glow {
46
+ 0% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.5); }
47
+ 50% { box-shadow: 0 0 40px rgba(99, 102, 241, 0.8); }
48
+ 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.5); }
49
+ }
50
 
51
  /* Apply float and glow to the “conscious orb” icon */
52
  .conscious-orb {