function animateHint() { const textarea = document.getElementById("text"); const baseText = ""; // Base hint text (always visible) const hintTexts = [ "I have the best brain. It's tremendous. You wouldn't believe it.", "I know more about everything than the experts. Believe me.", "Losers keep losing. That's why they're losers.", "Fake news says I exaggerate. I don't. I just tell the truth better.", "Listen, I'm not saying aliens are real, but… have you done DMT?", "Pull that up, Jamie.", "I had a guy on my podcast who swears Bigfoot is real. And honestly? I believe him.", "Elon Musk told me some wild stuff off-camera. I can't even talk about it.", "Everyone has a plan until they get punched in the mouth.", "I once tried to fight a gorilla. Zoo wouldn't let me. Cowards.", "I bit a guy once and still got invited to parties. That's real power.", ]; // Different hint texts let hintIndex = 0; // Track the current hint let index = 0; let direction = 1; // 1 for forward, -1 for backward let currentHint = hintTexts[hintIndex]; let speed = 3000 / currentHint.length / 2; // Speed calculation for 1s effect function updateHint() { textarea.setAttribute("placeholder", baseText + currentHint.substring(0, index)); if (direction === 1) { index++; if (index > currentHint.length) { direction = -1; setTimeout(updateHint, 500); // Pause before fading out return; } } else { index--; if (index < 0) { direction = 1; hintIndex = (hintIndex + 1) % hintTexts.length; // Move to the next hint currentHint = hintTexts[hintIndex]; // Update to new hint setTimeout(updateHint, 1000); // Pause before next hint starts return; } } setTimeout(updateHint, speed); } updateHint(); } document.addEventListener("DOMContentLoaded", function () { animateHint(); });