Advertisement
Tubuu

lol

Jul 9th, 2025
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const msg = "I am Yangyang, a temporary Outrider of the Midnight Rangers, responsible for detecting and investigating anomalies. The Streams have guided me to you. I have a feeling we'll be companions for many moons to come.";
  2.  
  3. const audio = document.getElementById('voice');
  4. const playBtn = document.getElementById('playBtn');
  5. const bubble = document.getElementById('bubble');
  6. const textContainer = document.getElementById('text');
  7.  
  8. function typeWriter(text, container, speed = 15000 / text.length) {
  9.   let i = 0;
  10.   container.textContent = '';
  11.  
  12.   function type() {
  13.     if (i < text.length) {
  14.       container.textContent += text.charAt(i++);
  15.       setTimeout(type, speed);
  16.     }
  17.   }
  18.  
  19.   type();
  20. }
  21.  
  22. playBtn.addEventListener('click', () => {
  23.   audio.play().catch(console.warn); // Required user interaction
  24.   bubble.style.display = 'block';
  25.   typeWriter(msg, textContainer);
  26.   playBtn.style.display = 'none';
  27. });
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement