整了一下 之前寫了好幾次每一次都丟三落四的 今天花了半天理了下思路 整理了下頭緒
//獲取歌詞文本 var txt = document.getElementById("lrc"); var lrc = txt.value;//獲取文本域里的值 /*console.log(lrc);*/ var lrcArr = lrc.split("[");//去除[ /*console.log(lrcArr);*/ var html = "";//定義一個(gè)空變量保存文本 for(var i=0 ; i<lrcArr.length ; i++) { var arr = lrcArr[i].split("]"); /*console.log(arr[1]);*/ var allTime = arr[0].split("."); var time = allTime[0].split(":"); //獲取分鐘 秒鐘 把時(shí)間換算成秒鐘 var timer = time[0]*60 + time[1]*1; var text = arr[1]; if(text) { html += "<p id="+timer+">"+text+"</p>" } con.innerHTML = html <pre class="html" name="code">}</pre> <pre></pre> <p></p> <p>實(shí)現(xiàn)歌詞同步首先要獲取到文本框 再配合H5中新增的屬性如圖 其實(shí)很簡單啦!</p> <p></p> <p><pre class="html" name="code"> //監(jiān)聽音樂播發(fā)進(jìn)度實(shí)現(xiàn)歌詞同步 myMusic.addEventListener("timeupdate",function(){ //獲取當(dāng)前播放時(shí)間 var curTime = parseInt(this.currentTime); if(document.getElementById(curTime)) { for(var i=0 ; i<oP.length ; i++) { oP[i].style.cssText = "color:#ccc;font-size:12px;"; } document.getElementById(curTime).style.cssText="color:rgb(242,110,111);font-size:18px;"; if (oP[num+7].id == curTime)//判斷成功一次num++ { con.style.top = -20*num +"px"; num++; } } });</pre></p> <pre></pre>
上面是我整理給大家的,希望今后會對大家有幫助。
相關(guān)文章:
在vue中如何實(shí)現(xiàn)頁面加載進(jìn)度條組件
在JS中Map和ForEach的區(qū)別有哪些?
使用axios封裝fetch方法和調(diào)用
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com