vue 页面文字转播放声音

vue 页面文字转播放声音

1、引入这句话

const synth = window.speechSynthesis;
const msg = new SpeechSynthesisUtterance();

2、引入声音的方法

/** 语音播报的函数/
handleSpeak(e){
msg.text = e;
msg.lang = 'zh-CN';
msg.volume = '1';
msg.rate = 1;
msg.pitch = 1;
synth.speak(msg);
},
/
* 语音停止 */
handleStop(e){
msg.text = e;
msg.lang = 'zh-CN';
synth.cancel(msg);
}

3、需要使用的地方调用

/* 语音播放 */
this.handleSpeak('你好,有新的告警信息产生啦');

posted @ 2021-04-06 10:35  胖头陀春天  阅读(1107)  评论(0编辑  收藏  举报