-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
42 lines (35 loc) · 1.29 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
const msg = new SpeechSynthesisUtterance();
let voices = [];
const voicesDropdown = document.querySelector('[name="voice"]');
const options = document.querySelectorAll('[type="range"], [name="text"]');
const speakButton = document.querySelector('#speak');
const stopButton = document.querySelector('#stop');
msg.text = document.querySelector('[name="text"]').value;
function populateVoices(){
voices = this.getVoices();
const voiceOptions = voices.map((voice)=>{
return `<option value="${voice.name}">${voice.name} (${voice.lang})</option>`;
}).join("");
voicesDropdown.innerHTML=voiceOptions;
}
function setVoice(){
msg.voice = voices.find(voice=> {
return voice.name===this.value;
});
// console.log(msg.voice);
toggle();
}
function toggle(){
speechSynthesis.cancel();
speechSynthesis.speak(msg);
}
function setOption(){
// var ok = this.name;
msg[this.name] = this.value;
toggle();
}
speechSynthesis.addEventListener('voiceschanged',populateVoices);
voicesDropdown.addEventListener('change',setVoice);
options.forEach(option=>option.addEventListener('change',setOption));
speakButton.addEventListener("click",toggle);
stopButton.addEventListener("click",()=>speechSynthesis.cancel());