fix css for SAFARI - cmon APPLE

This commit is contained in:
2025-07-04 03:01:48 -04:00
parent ecde5f34bb
commit e348734000
3 changed files with 64 additions and 7 deletions

View File

@ -50,8 +50,11 @@ function createParticle() {
}, 14000);
}
// Create particles frequently
setInterval(createParticle, 75);
// Delay particle creation to ensure background renders
setTimeout(() => {
// Create particles frequently
setInterval(createParticle, 75);
}, 500); // 500ms delay
function throttle(fn, wait) {
let lastTime = 0;