键入.js脚本在iPhone6中不起作用,如果任何单词将在该行完成,在这种情况下,另一个单词不键入,仅显示光标

Typed.js script is not working in iPhone6, if any word will complete at the of the line in that case another word are not type, only showing cursor

本文关键字:单词不 另一个 这种情况下 光标 显示 iPhone6 脚本 js 不起作用 如果 键入      更新时间:2023-09-26

例如行 - "使用强大的技术创建有意义的解决方案"在iPhone 6中,第一行以"使用""使用"单词结尾,之后剩余的单词不显示仅显示光标。

我们是一个有条不紊,无所畏惧和充满激情的实干家,发现者和创新者的集体

          <div class="type-wrap">
             <span style="font-size:30px;" >At Pinnove-</span>
           <div id="typed-strings">
            <p>Ideas come to life</p>
            <p>Meaningful solutions are created using robust technology</p>
            <p>And then deletes them.</p>
            <p>We help enterprises solve their toughest challenges</p>
          </div>
             <span id="typed" style=" word-wrap: break-word;"></span>
         </div>
        </div>
    </div>

找到解决方案及其工作原理。

Used "white-space: pre-wrap;" property to span as bellow..
<span id="typed" style="white-space: pre-wrap;"></span>
相关文章: