Auto commit: 2026-02-16T19:58:42.796Z
This commit is contained in:
parent
e77235af6e
commit
e896719d0b
17
index.php
17
index.php
@ -588,8 +588,9 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489";
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
transition: all 0.05s ease-out; /* Super fast for vibration */
|
||||||
position: relative;
|
position: relative;
|
||||||
|
will-change: transform, background-color, box-shadow;
|
||||||
}
|
}
|
||||||
|
|
||||||
.social-float::before {
|
.social-float::before {
|
||||||
@ -951,6 +952,13 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489";
|
|||||||
trackTitle.style.textShadow = '0 0 20px #ff0000, 0 0 40px #ff0000';
|
trackTitle.style.textShadow = '0 0 20px #ff0000, 0 0 40px #ff0000';
|
||||||
trackTitle.style.transform = `scale(${1 + (average / 255) * 0.12})`;
|
trackTitle.style.transform = `scale(${1 + (average / 255) * 0.12})`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Social Icons aggression
|
||||||
|
document.querySelectorAll('.social-float').forEach(icon => {
|
||||||
|
icon.style.backgroundColor = '#ff0000';
|
||||||
|
icon.style.boxShadow = '0 0 30px #ff0000, 0 0 60px rgba(255, 0, 0, 0.6)';
|
||||||
|
icon.style.transform = `translate(${(Math.random() - 0.5) * shakeIntensity * 2}px, ${(Math.random() - 0.5) * shakeIntensity * 2}px) scale(1.15)`;
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
const dominantHue = (average * 2 + colorOffset) % 360;
|
const dominantHue = (average * 2 + colorOffset) % 360;
|
||||||
document.documentElement.style.setProperty('--dynamic-glow', `hsla(${dominantHue}, 100%, 60%, 0.8)`);
|
document.documentElement.style.setProperty('--dynamic-glow', `hsla(${dominantHue}, 100%, 60%, 0.8)`);
|
||||||
@ -964,6 +972,13 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489";
|
|||||||
trackTitle.style.textShadow = '';
|
trackTitle.style.textShadow = '';
|
||||||
trackTitle.style.transform = '';
|
trackTitle.style.transform = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Reset Social Icons
|
||||||
|
document.querySelectorAll('.social-float').forEach(icon => {
|
||||||
|
icon.style.backgroundColor = '';
|
||||||
|
icon.style.boxShadow = '';
|
||||||
|
icon.style.transform = '';
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user