Compare commits

..

3 Commits

2 changed files with 24 additions and 16 deletions

View File

@ -1,29 +1,36 @@
isRead = true; var isRead = true;
isChoose = true; var isChoose = true;
var reader = window.speechSynthesis; // 全局定义朗读者,以便朗读和暂停 const reader = window.speechSynthesis; // 全局定义朗读者,以便朗读和暂停
//获取字符
function getWord(){ function getWord(){
var word = window.getSelection?window.getSelection():document.selection.createRange().text; return window.getSelection?window.getSelection():document.selection.createRange().text;
return word;
} }
function fillinWord(){ //填充字符
var word = getWord(); function fillingWord(){
let word = getWord();
if (isRead) read(word); if (isRead) read(word);
if (!isChoose) return; if (!isChoose) return;
var element = document.getElementById("selected-words"); let element = document.getElementById("selected-words");
element.value = element.value + " " + word; element.value = element.value + " " + word;
} }
document.getElementById("text-content").addEventListener("click", fillinWord, false); document.getElementById("text-content").addEventListener("click", fillingWord, false);
function read(s){ //朗读单词
var msg = new SpeechSynthesisUtterance(s); //@word 要朗读的单词
function read(word){
//关闭当前正在读的单词
reader.cancel()
//创建新的朗读任务
let msg = new SpeechSynthesisUtterance(word);
reader.speak(msg); reader.speak(msg);
} }
//关闭正在读的单词
function onReadClick(){ function onReadClick(){
isRead = !isRead; let isRead = !isRead;
if(!isRead){ if(!isRead){
reader.cancel(); reader.cancel();
} }
} }
//取消当前选择
function onChooseClick(){ function onChooseClick(){
isChoose = !isChoose; isChoose = !isChoose;
} }

View File

@ -29,9 +29,10 @@ function highLight() {
if (sel_word1 != null) { if (sel_word1 != null) {
var list = sel_word1.value.split(" "); var list = sel_word1.value.split(" ");
for (var i = 0; i < list.length; ++i) { for (var i = 0; i < list.length; ++i) {
list[i] = list[i].replace(/(^\s*)|(\s*$)/g, ""); list[i] = list[i].replace(/(^\s*)|(\s*$)/g, "");//消除字符串两边空字符
if (list[i] != "" && "<mark>".indexOf(list[i]) == -1 && "</mark>".indexOf(list[i]) == -1) { if (list[i] != "" && "<mark>".indexOf(list[i]) == -1 && "</mark>".indexOf(list[i]) == -1) {
txt = txt.replace(new RegExp(list[i], "g"), "<mark>" + list[i] + "</mark>");
txt = txt.replace(new RegExp("\\s"+list[i]+"\\s", "g"), " <mark>" + list[i] + "</mark> ");
} }
} }
} }
@ -40,7 +41,7 @@ function highLight() {
for (var i = 0; i < list2.length; ++i) { for (var i = 0; i < list2.length; ++i) {
list2[i] = list2[i].replace(/(^\s*)|(\s*$)/g, ""); list2[i] = list2[i].replace(/(^\s*)|(\s*$)/g, "");
if (list2[i] != "" && "<mark>".indexOf(list2[i]) == -1 && "</mark>".indexOf(list2[i]) == -1) { if (list2[i] != "" && "<mark>".indexOf(list2[i]) == -1 && "</mark>".indexOf(list2[i]) == -1) {
txt = txt.replace(new RegExp(list2[i], "g"), "<mark>" + list2[i] + "</mark>"); txt = txt.replace(new RegExp("\\s"+list2[i]+"\\s", "g"), " <mark>" + list2[i] + "</mark> ");
} }
} }
} }