Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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.";
- const audio = document.getElementById('voice');
- const playBtn = document.getElementById('playBtn');
- const bubble = document.getElementById('bubble');
- const textContainer = document.getElementById('text');
- function typeWriter(text, container, speed = 15000 / text.length) {
- let i = 0;
- container.textContent = '';
- function type() {
- if (i < text.length) {
- container.textContent += text.charAt(i++);
- setTimeout(type, speed);
- }
- }
- type();
- }
- playBtn.addEventListener('click', () => {
- audio.play().catch(console.warn); // Required user interaction
- bubble.style.display = 'block';
- typeWriter(msg, textContainer);
- playBtn.style.display = 'none';
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement