forked from mrlan/EnglishPal
Compare commits
No commits in common. "Bug407-JinHaoLin" and "master" have entirely different histories.
Bug407-Jin
...
master
|
@ -1,36 +1,29 @@
|
|||
var isRead = true;
|
||||
var isChoose = true;
|
||||
const reader = window.speechSynthesis; // 全局定义朗读者,以便朗读和暂停
|
||||
//获取字符
|
||||
isRead = true;
|
||||
isChoose = true;
|
||||
var reader = window.speechSynthesis; // 全局定义朗读者,以便朗读和暂停
|
||||
|
||||
function getWord(){
|
||||
return window.getSelection?window.getSelection():document.selection.createRange().text;
|
||||
var word = window.getSelection?window.getSelection():document.selection.createRange().text;
|
||||
return word;
|
||||
}
|
||||
//填充字符
|
||||
function fillingWord(){
|
||||
let word = getWord();
|
||||
function fillinWord(){
|
||||
var word = getWord();
|
||||
if (isRead) read(word);
|
||||
if (!isChoose) return;
|
||||
let element = document.getElementById("selected-words");
|
||||
var element = document.getElementById("selected-words");
|
||||
element.value = element.value + " " + word;
|
||||
}
|
||||
document.getElementById("text-content").addEventListener("click", fillingWord, false);
|
||||
//朗读单词
|
||||
//@word 要朗读的单词
|
||||
function read(word){
|
||||
//关闭当前正在读的单词
|
||||
reader.cancel()
|
||||
//创建新的朗读任务
|
||||
let msg = new SpeechSynthesisUtterance(word);
|
||||
document.getElementById("text-content").addEventListener("click", fillinWord, false);
|
||||
function read(s){
|
||||
var msg = new SpeechSynthesisUtterance(s);
|
||||
reader.speak(msg);
|
||||
}
|
||||
//关闭正在读的单词
|
||||
function onReadClick(){
|
||||
let isRead = !isRead;
|
||||
isRead = !isRead;
|
||||
if(!isRead){
|
||||
reader.cancel();
|
||||
}
|
||||
}
|
||||
//取消当前选择
|
||||
function onChooseClick(){
|
||||
isChoose = !isChoose;
|
||||
}
|
|
@ -29,10 +29,9 @@ function highLight() {
|
|||
if (sel_word1 != null) {
|
||||
var list = sel_word1.value.split(" ");
|
||||
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) {
|
||||
|
||||
txt = txt.replace(new RegExp("\\s"+list[i]+"\\s", "g"), " <mark>" + list[i] + "</mark> ");
|
||||
txt = txt.replace(new RegExp(list[i], "g"), "<mark>" + list[i] + "</mark>");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -41,7 +40,7 @@ function highLight() {
|
|||
for (var i = 0; i < list2.length; ++i) {
|
||||
list2[i] = list2[i].replace(/(^\s*)|(\s*$)/g, "");
|
||||
if (list2[i] != "" && "<mark>".indexOf(list2[i]) == -1 && "</mark>".indexOf(list2[i]) == -1) {
|
||||
txt = txt.replace(new RegExp("\\s"+list2[i]+"\\s", "g"), " <mark>" + list2[i] + "</mark> ");
|
||||
txt = txt.replace(new RegExp(list2[i], "g"), "<mark>" + list2[i] + "</mark>");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue