mshj_blog/themes/terminal/static/js/topbar.js
2025-07-04 16:10:22 -04:00

14 lines
No EOL
455 B
JavaScript

const miniHeader = document.getElementById('mini-header');
const texts = ['use linux', 'i hate css', 'gpl everything', 'made with love']; // add your random text here
const text = texts[Math.floor(Math.random() * texts.length)];
let charIndex = 0;
function typeText() {
if (charIndex < text.length) {
miniHeader.textContent += text.charAt(charIndex);
charIndex++;
setTimeout(typeText, 50); // adjust the typing speed here
}
}
typeText();