从其索引值

时间:2018-02-19 06:44:29

标签: angular text-to-speech speech-synthesis

我尝试在我的网站上实施文字转语音搜索 我试图这样做只是突出显示它所说的内容 这是我的代码

this.utterThis.onboundary=function(event){
    if(event.name=='word'){
      this.progress_index=event.charIndex;
      console.log(textcontent.charAt(this.progress_index))
    }  

在控制台日志中,returns是第一个单词的索引值。 它告诉所有p标记文本都在textcontent变量中。

var textcontent = (<HTMLIFrameElement>document.getElementById("description")).contentWindow.document.body.innerHTML;

所以我真正想要的是突出显示使用索引值说出来的文字 注意: event.name返回word

提前感谢。

2 个答案:

答案 0 :(得分:1)

试试这种方式

var event = {
  name: 'highlightText',
  charIndex: 18
};
var text = 'lorem ipsum dolar highlightText sit amet';

var html = text.substring(0, event.charIndex)
            + '<span class="highlight">' + event.name + '</span>'
            + text.substring(event.charIndex + event.name.length, text.length);
            
document.body.innerHTML = html;
.highlight {
  background: yellow;
}

答案 1 :(得分:0)

我解决了它

this.utterThis.onboundary = function (event) {
    if (event.name == 'word') {
      this.progress_index = event.charIndex;

      this.remainingword = this.utterThis.text.substring(this.progress_index, this.utterThis.text.indexOf(" "));

      var html:string = this.utterThis.text.substring(this.progress_index, this.utterThis.text.indexOf(" ")).fontcolor("blue") + this.utterThis.text.substring(this.remainingword.length + 4);
      console.log(html);
      (<HTMLIFrameElement>document.getElementById("description")).contentWindow.document.body.innerHTML = html;
    }
  }.bind(this)