function speak(text, opt_prop) {
if (typeof SpeechSynthesisUtterance === "undefined" || typeof window.speechSynthesis === "undefined") {
alert("이 브라우저는 음성 합성을 지원하지 않습니다.")
return
}
window.speechSynthesis.cancel() // 현재 읽고있다면 초기화
const prop = opt_prop || {}
const speechMsg = new SpeechSynthesisUtterance()
speechMsg.rate = prop.rate || 1 // 속도: 0.1 ~ 10
speechMsg.pitch = prop.pitch || 1 // 음높이: 0 ~ 2
speechMsg.lang = prop.lang || "ko-KR"
speechMsg.text = text
// SpeechSynthesisUtterance에 저장된 내용을 바탕으로 음성합성 실행
window.speechSynthesis.speak(speechMsg)
}
})
https://codepen.io/fangmin/pen/GRWvMpr
'프론트엔드 공부 > js예제' 카테고리의 다른 글
getTimezoneOffset으로 각나라 시간대 구하기 (0) | 2021.05.27 |
---|---|
highlight 예제(css javascript hover시 width 값이 조정) (0) | 2021.05.17 |
css 변수 js로 핸들링하기 예제 (0) | 2021.05.17 |