第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

我需要整個類型的書寫文本在頁面上停留一段時間,然后在第二個循環(huán)中消失

我需要整個類型的書寫文本在頁面上停留一段時間,然后在第二個循環(huán)中消失

猛跑小豬 2023-10-20 16:23:04
1 . 一旦在第二個循環(huán)之前完全寫入,我需要將整個類型的寫入文本保留在顯示屏上。請在我的代碼上應用該解決方案。2 . 其次,在我的文本字符串中,當我使用“b”或“strong”標簽使特定文本變?yōu)榇煮w時,“<”符號在鍵入過程中會顯示幾毫秒,所有其他標簽也會發(fā)生同樣的情況。我不知道我的代碼有什么問題。下面是我的代碼。for (let i = 0; i < 10; i++) {  task(i);}function task(i) {  setTimeout(function() {    // Add tasks to do     var typeString = ['? I m Mr.Frits.\n? and   I <b>love </b> Pakistan...:)'];    var i = 0;    var count = 0    var selectedText = '';    var text = '';        (function type() {      if (count == typeString.length) {        count = 0;      }      selectedText = typeString[count];      text = selectedText.slice(0, ++i);      document.getElementById('typing').innerHTML = text.fontsize(6);      document.getElementById('typing').style.fontFamily = "monospace";      document.getElementById("typing").style.color = "black";      document.getElementById("typing").style.fontWeight = "normal";      if (text.length === selectedText.length) {        count++;        i = 0;      }      /* SOLUTION : wait two seconds when new line */      if (typeString[0][i - 1] == '\n') {        setTimeout(type, 1000);      } else {        setTimeout(type, 100);      }    }());  }, 1000);}<pre id="typing"></pre>
查看完整描述

1 回答

?
喵喵時光機

TA貢獻1846條經驗 獲得超7個贊

由于計數設置為1一旦達到字符串末尾的長度,因此您可以添加條件并增加超時(如果滿足):


/* SOLUTION : wait two seconds when new line */

if (typeString[0][i - 1] == '\n') {

    setTimeout(type, 1000);

} else if (count === 1) {

    setTimeout(type, 3000);

} else {

    setTimeout(type, 100);

}

使用<br />'s 時,瀏覽器不會將其注冊為有效的 HTML,直到標記完成。因此,有一秒鐘,所有渲染的內容都是<在標簽的其余部分完成并且它理解該標簽是什么之前。

for (let i = 0; i < 10; i++) {

  task(i);

}


function task(i) {

  setTimeout(function() {

    // Add tasks to do 

    var typeString = ['? I m Mr.Frits.\n? and   I love  Pakistan...:)'];

    var i = 0;

    var count = 0;

    var selectedText = '';

    var text = '';

    var typing = document.getElementById('typing');


    (function type() {

      if (count == typeString.length) {

        count = 0;

      };


      selectedText = typeString[count];

      text = selectedText.slice(0, ++i);

      typing.innerHTML = text.fontsize(6);

      typing.style.fontFamily = "monospace";

      typing.style.color = "black";

      typing.style.fontWeight = "normal";


      if (text.length === selectedText.length) {

        count++;

        i = 0;

      }


      /* SOLUTION : wait two seconds when new line */

      if (typeString[0][i - 1] == '\n') {

        setTimeout(type, 1000);

      } else if (count === 1) {

        setTimeout(type, 3000);

      } else {

        setTimeout(type, 100);

      }

    }());

  }, 1000);

}

<pre id="typing"></pre>


查看完整回答
反對 回復 2023-10-20
  • 1 回答
  • 0 關注
  • 189 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號