向上滚动文本并在使用 html5 音频读取文本时将其隐藏
Posted
技术标签:
【中文标题】向上滚动文本并在使用 html5 音频读取文本时将其隐藏【英文标题】:Scroll text up and hide it as it gets read using html5 audio 【发布时间】:2017-10-06 10:43:24 【问题描述】:我正在使用代码突出显示使用 html5 音频读取的文本单词,并且在单击相邻句子时也会读取音频。
我需要的是使正在读取的行从页面中消失,并且正在读取的下一行跳转到它的位置,依此类推..所以到最后页面中什么都没有了,但是:1-音频播放器,2-“突出显示开/关”按钮,3-“滚动开/关”按钮。
因此,页面中有两个选项,用户希望在阅读时一起看到所有文本,或者只是看到正在听到的行(以及它下面的行)。
正在使用的代码是:
var textHighlightOn = true,
btnToggle = document.getElementById('toggleTxt'),
textDiv = document.querySelector('.text-highlight')
spns = document.querySelectorAll('span'),
audi = document.getElementById("adi");
audi.addEventListener("timeupdate", f1);
function f1()
// remove all previous actives;
[].forEach.call(spns, function(e)
e.classList.remove('active');
e.classList.remove('active-prev');
);
var i;
for (i = 0 ; i< spns.length ; i++)
var time = Number(spns[i].id.slice(2));
if(time < audi.currentTime)
if (i>0)
spns[i-1].classList.remove('active');
spns[i-1].classList.add('active-prev');
spns[i].classList.add('active');
// listen for clicks on the spans.
[].forEach.call(spns, function(spn)
spn.addEventListener("click", function()
for(var i in spns)
var time = Number(this.id.slice(2));
audi.currentTime = time;
);
);
// Toggle text highlight
btnToggle.addEventListener("click", function()
if(textHighlightOn)
textDiv.classList.add('off');
else
textDiv.classList.remove('off');
this.innerHTML = 'Highlight ' + (textHighlightOn ? 'off ' : ' on');
textHighlightOn = !textHighlightOn;
);
body
background: #008000;
.text-highlight span.active-prev
background: #fff;
.text-highlight span.active
background: #03a9f4;
.text-highlight.off span
background: transparent;
<audio id="adi" controls>
<source src="https://ia802508.us.archive.org/5/items/testmp3testfile/mpthreetest.mp3"/>
</audio>
<button id="toggleTxt">Highlight on</button>
<div class="text-highlight">
<pre>
<span id="ts0.5">Ok, we're trying this for a second time</span> ,
<br><span id="ts3">to test the ability</span>
<br><span id="ts6">to upload an M P</span>
<br><span id="ts9">3 file.</span>
<br><span id="ts10">Hopefully this will work!</span>
</pre>
</div>
【问题讨论】:
【参考方案1】:应该这样做。
var
// Controlls
textHighlightOn = true,
showAllTxt = true,
btnToggle = document.getElementById('toggleTxt'),
btnToggleShowTxt = document.getElementById('toggleShowTxt'),
textDiv = document.querySelector('.text-highlight'),
spns = document.querySelectorAll('span'),
audi = document.getElementById("adi");
audi.addEventListener("timeupdate", f1);
function f1()
// remove all previous actives;
[].forEach.call(spns, function(e)
e.classList.remove('active');
e.classList.remove('active-prev');
);
var i;
for (i = 0 ; i< spns.length ; i++)
var time = Number(spns[i].id.slice(2));
if(time < audi.currentTime)
if (i>0)
spns[i-1].classList.remove('active');
spns[i-1].classList.add('active-prev');
spns[i].classList.add('active');
// listen for clicks on the spans.
[].forEach.call(spns, function(spn)
spn.addEventListener("click", function()
for(var i in spns)
var time = Number(this.id.slice(2));
audi.currentTime = time;
);
);
// Toggle text highlight
btnToggle.addEventListener("click", function()
if(textHighlightOn)
textDiv.classList.add('off');
else
textDiv.classList.remove('off');
this.innerHTML = 'Highlight ' + (textHighlightOn ? 'off ' : ' on');
textHighlightOn = !textHighlightOn;
);
//
btnToggleShowTxt.addEventListener("click", function()
if(showAllTxt)
textDiv.classList.remove('show-all');
else
textDiv.classList.add('show-all');
this.innerHTML = 'See All Text ' + (showAllTxt ? 'off ' : ' on');
showAllTxt = !showAllTxt;
);
body
background: #008000;
span
padding:0;
margin:0;
.text-highlight span
display:block;
margin-bottom:1px;
.text-highlight span.active-prev
display:none;
background:#fff;
.text-highlight span.active
background: #03a9f4;
display:block;
.text-highlight.show-all span
display:block !important;
/* turn off highlight */
.text-highlight.off span
background: transparent;
<audio id="adi" controls>
<source src="https://ia802508.us.archive.org/5/items/testmp3testfile/mpthreetest.mp3"/>
</audio>
<button id="toggleTxt">Highlight on</button>
<button id="toggleShowTxt">See All Text on</button>
<div class="text-highlight show-all">
<span id="ts0.5">Ok, we're trying this for a second time,</span>
<span id="ts3">to test the ability</span>
<span id="ts6">to upload an M P</span>
<span id="ts9">3 file.</span>
<span id="ts10">Hopefully this will work!</span>
</div>
【讨论】:
您好!感谢您的回答.. 但是我想要从新按钮中默认显示所有行,并且当一行完成读取时它会消失(它通常以 5 行开始,然后第一行在被读取后消失,然后有 4 行,依此类推)。并且没有新的 #ffc107 高亮显示。事实上,在这种情况下,我们也可以删除白色高亮显示,因为读取的行消失了,所以现在只有第一行的蓝色高亮显示。.. @Mike,很抱歉,如果我花了很多时间来回复(我尽量利用我的周末)。查看更新后的答案。 谢谢,祝你周末愉快,编码愉快!我知道程序员如何享受挑战 :) 它现在运行良好,但它删除了以前突出显示的白色阅读文本的选项。当用户没有点击“查看所有文本”按钮时,它应该总是在那里,当点击它会自动消失,因为之前读取的行已经消失了。 @Mike,现在复习吗? 超级.. 谢谢.. 我不想打扰你,但我有一个不同的问题尚未得到解答,你看这个人可以有发言权。如果您能在空闲时间查看一下,那就太好了..提前感谢..***.com/questions/46617791/…以上是关于向上滚动文本并在使用 html5 音频读取文本时将其隐藏的主要内容,如果未能解决你的问题,请参考以下文章
通过 UiscrollView 快速滚动到 UITextField 仅作为第一次错误